From af126ed9975b4b2d7f94cbb7b4bb3b07b393b7b6 Mon Sep 17 00:00:00 2001 From: Elise Chouleur Date: Wed, 27 Sep 2023 10:12:18 +0200 Subject: [PATCH] Update dependencies version except of syn and darling as it comes with major changes --- Cargo.toml | 4 ++-- robusta-android-example/Cargo.toml | 6 +++--- robusta-codegen/Cargo.toml | 8 ++++---- robusta-example/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f6b796c9d..6b8b15f7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } diff --git a/robusta-android-example/Cargo.toml b/robusta-android-example/Cargo.toml index c0b47cc42..02f7c4597 100644 --- a/robusta-android-example/Cargo.toml +++ b/robusta-android-example/Cargo.toml @@ -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" diff --git a/robusta-codegen/Cargo.toml b/robusta-codegen/Cargo.toml index e1cb12631..e96ff9c57 100644 --- a/robusta-codegen/Cargo.toml +++ b/robusta-codegen/Cargo.toml @@ -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" diff --git a/robusta-example/Cargo.toml b/robusta-example/Cargo.toml index 523abff62..a9fd27d80 100644 --- a/robusta-example/Cargo.toml +++ b/robusta-example/Cargo.toml @@ -8,4 +8,4 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -robusta_jni = { path = "../" } +robusta_jni = { path = "../." }