Skip to content

Commit

Permalink
Merge pull request #8 from tokuhirom/fix
Browse files Browse the repository at this point in the history
Specify Exact Versions for 0.x Dependencies
  • Loading branch information
genya0407 authored Dec 31, 2023
2 parents 365c2db + 4b87d7d commit bce6fe4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = "0.3.2"
publish = []

[dependencies]
doc-comment = "0.*"
doc-comment = "0.3.3"
minutus = { path = "minutus", features = ["link_mruby"] }

# workspace settings
Expand Down
4 changes: 2 additions & 2 deletions minutus-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ description = "Procedural macro definitions for minutus"
repository = "https://github.com/genya0407/minutus"

[dependencies]
darling = "0.*"
darling = "0.20.3"
proc-macro2 = "1.*"
quote = "1.*"
syn = { version = "1.*", features = ["full", "extra-traits"] }
convert_case = "0.*"
convert_case = "0.6.0"

[lib]
proc-macro = true
4 changes: 2 additions & 2 deletions minutus-mrbgem-template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ minutus = { version = "0.4.0", path = "../minutus", features = ["mruby_3_1_0"] }
[dependencies]
minutus = { version = "0.4.0", path = "../minutus", features = ["mruby_3_1_0"] }
maplit = "1.*"
argopt = "0.*"
convert_case = "0.*"
argopt = "0.3.0"
convert_case = "0.6.0"
anyhow = "1.*"
tera = "1.*"
lazy_static = "1.*"
4 changes: 2 additions & 2 deletions minutus-mruby-build-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/genya0407/minutus"
[dependencies]
anyhow = "1.*"
bytes = "1.*"
tar = "0.*"
reqwest = { version = "0.*", features = ["blocking"] }
tar = "0.4.40"
reqwest = { version = "0.11.23", features = ["blocking"] }
flate2 = "1.*"
cc = "1.*"
4 changes: 2 additions & 2 deletions minutus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ readme = "../README.md"
[build-dependencies]
minutus-mruby-build-utils = { version = "0.3.2-alpha.1", path = "../minutus-mruby-build-utils" }
anyhow = "1.*"
bindgen = "0.*"
bindgen = "0.69.1"
cc = "1.*"
bytes = "1.*"
tar = "0.*"
tar = "0.4.40"
flate2 = "1.*"

[dependencies]
Expand Down

0 comments on commit bce6fe4

Please sign in to comment.