Skip to content

Commit

Permalink
Update dependencies version except of syn and darling as it comes wit…
Browse files Browse the repository at this point in the history
…h major changes
  • Loading branch information
EliseChouleur committed Sep 27, 2023
1 parent efd71f3 commit af126ed
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ documentation = "https://docs.rs/robusta/"
[dependencies]
robusta-codegen = { version = "0.2", path = "./robusta-codegen" }
jni = "0.19.0"
paste = "1.0.0"
static_assertions = "1.1.0"
paste = "^1"
static_assertions = "^1"

[dev-dependencies]
native = { path = "./tests/driver/native" }
Expand Down
6 changes: 3 additions & 3 deletions robusta-android-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "robustaandroidexample"
crate-type = ["cdylib"]

[dependencies]
robusta_jni = { path = "../" }
robusta_jni = { path = "../." }
jni = "0.19.0"
android_logger = "0.9"
log = "0.4.8"
android_logger = "^0"
log = "^0"
8 changes: 4 additions & 4 deletions robusta-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ repository = "https://github.com/giovanniberti/robusta/robusta-codegen"
proc-macro = true

[dependencies]
quote = "1"
quote = "^1"
proc-macro2 = { version = "1.0.21", features = ["span-locations"]}
syn = { version = "1.0", features = ["visit", "fold", "derive"] }
syn = { version = "^1", features = ["visit", "fold", "derive"] }
proc-macro-error = { version = "1", default-features = false }
rand = "0.7.3"
darling = "0.10.2"
rand = "^0"
darling = "^0.14"
Inflector = "0.11.4"
2 changes: 1 addition & 1 deletion robusta-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2018"
crate-type = ["cdylib"]

[dependencies]
robusta_jni = { path = "../" }
robusta_jni = { path = "../." }

0 comments on commit af126ed

Please sign in to comment.