Skip to content

Commit

Permalink
chore: Regroup the IT dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-l committed Apr 24, 2024
1 parent 97cf2f5 commit 2f0204a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions crates/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ name = "beerus-rpc"
version = "0.4.0"

[features]
integration-tests = ["pretty_assertions", "cached"]
integration-tests = ["cached", "lazy_static", "pretty_assertions", "serde_json", "reqwest", "tokio"]

[dependencies]
beerus-core = { path = "../core" }
cached = { version = "0.49.3", optional = true }
starknet.workspace = true
eyre.workspace = true
jsonrpsee = { version = "0.20.3", features = ["macros", "server", "server-core"] }
pretty_assertions = { version = "1.4.0", optional = true }
serde = { workspace = true, features = ["derive"] }
serde_with.workspace = true
thiserror.workspace = true
tracing.workspace = true

[dev-dependencies]
lazy_static = "1.4.0"
serde_json = "1.0"
reqwest = "0.11.13"
tokio.workspace = true
# Integration test dependencies
cached = { version = "0.49.3", optional = true }
lazy_static = { version = "1.4.0", optional = true }
pretty_assertions = { version = "1.4.0", optional = true }
reqwest = { version = "0.11.16", optional = true }
serde_json = { version = "1.0", optional = true }
tokio = { workspace = true, optional = true }

0 comments on commit 2f0204a

Please sign in to comment.