Skip to content

Commit

Permalink
use consistent cargo-toml
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed Apr 30, 2024
1 parent b0c4102 commit 62298c6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
6 changes: 3 additions & 3 deletions ibc-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion ibc-testkit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit 62298c6

Please sign in to comment.