Skip to content

Commit

Permalink
Loosen the dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
juhaku committed Feb 1, 2022
1 parent 789a7f4 commit 395ec33
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ actix_extras = ["utoipa-gen/actix_extras"]
json = ["serde_json", "utoipa-gen/json"]

[dependencies]
serde = { version = "1.0.136", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
log = "0.4.14"
serde_json = { version = "1.0.78", optional = true }
rust-embed = { version = "6.3.0", optional = true, features = ["interpolate-folder-path"] }
actix-web = { version = "3.3.3", optional = true }
mime_guess = { version = "2.0.3", optional = true }
serde_json = { version = "1.0", optional = true }
rust-embed = { version = "6.3", optional = true, features = ["interpolate-folder-path"] }
actix-web = { version = "3.3", optional = true }
mime_guess = { version = "2.0", optional = true }
utoipa-gen = { version = "0.1.0-beta.0", path = "./utoipa-gen" }

[dev-dependencies]
Expand Down
12 changes: 6 additions & 6 deletions utoipa-gen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ repository = "https://github.com/juhaku/utoipa"
proc-macro = true

[dependencies]
proc-macro2 = "1.0.32"
syn = { version = "1.0.81", features = ["full"] }
quote = "1.0.10"
proc-macro-error = "1.0.4"
regex = { version = "1.5.4", optional = true }
lazy_static = { version = "1.4.0", optional = true }
proc-macro2 = "1.0"
syn = { version = "1.0", features = ["full"] }
quote = "1.0"
proc-macro-error = "1.0"
regex = { version = "1.5", optional = true }
lazy_static = { version = "1.4", optional = true }

[features]
debug = ["syn/extra-traits"]
Expand Down

0 comments on commit 395ec33

Please sign in to comment.