From 62298c694239026507b8f4e00002e8639ef2239c Mon Sep 17 00:00:00 2001 From: Ranadeep Biswas Date: Tue, 30 Apr 2024 12:31:44 +0200 Subject: [PATCH] use consistent cargo-toml --- Cargo.toml | 2 +- ibc-derive/Cargo.toml | 6 +++--- ibc-testkit/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 451d10509..0c9b96291 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ borsh = { version = "0.10", default-features = false } displaydoc = { version = "0.2", default-features = false } prost = { version = "0.12", default-features = false } derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display", "try_into"] } -rstest = "0.18.2" +rstest = { version = "0.18.2"} schemars = { version = "0.8.15" } sha2 = { version = "0.10.8", default-features = false } serde = { version = "1.0", default-features = false } diff --git a/ibc-derive/Cargo.toml b/ibc-derive/Cargo.toml index 90abcab43..3f0d45b75 100644 --- a/ibc-derive/Cargo.toml +++ b/ibc-derive/Cargo.toml @@ -11,6 +11,6 @@ description = "Maintained by `ibc-rs`, macros implementations of #[derive(Client proc-macro = true [dependencies] -syn = "2" -proc-macro2 = "1" -quote = "1" +syn = { version = "2" } +proc-macro2 = { version = "1"} +quote = { version = "1" } diff --git a/ibc-testkit/Cargo.toml b/ibc-testkit/Cargo.toml index 55546cf8c..70e92c10f 100644 --- a/ibc-testkit/Cargo.toml +++ b/ibc-testkit/Cargo.toml @@ -37,7 +37,7 @@ tendermint = { workspace = true } tendermint-testgen = { workspace = true } [dev-dependencies] -env_logger = "0.11.0" +env_logger = { version = "0.11.0" } rstest = { workspace = true } tracing-subscriber = { version = "0.3.17", features = ["fmt", "env-filter", "json"] } test-log = { version = "0.2.13", features = ["trace"] }