Skip to content

Commit

Permalink
fix: missing dependencies for committer crates (#11)
Browse files Browse the repository at this point in the history
Signed-off-by: Dori Medini <[email protected]>
  • Loading branch information
dorimedini-starkware authored Jul 10, 2024
1 parent 38361aa commit 95cf91e
Showing 1 changed file with 37 additions and 35 deletions.
72 changes: 37 additions & 35 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,22 @@ license = "Apache-2.0"
license-file = "LICENSE"

[workspace.dependencies]
anyhow = "1.0.44"
ark-ec = "0.4.2"
ark-ff = "0.4.0-alpha.7"
ark-secp256k1 = "0.4.0"
ark-secp256r1 = "0.4.0"
assert-json-diff = "2.0.2"
assert_matches = "1.5.0"
async-recursion = "1.1.0"
async-stream = "0.3.3"
async-trait = "0.1.79"
axum = "0.6.12"
base64 = "0.13.0"
bincode = "1.3.3"
bitvec = "1.0.1"
byteorder = "1.4.3"
bytes = "1"
cached = "0.44.0"
cairo-felt = "0.9.1"
cairo-lang-casm = "=2.7.0-dev.0"
Expand All @@ -60,72 +68,66 @@ cairo-lang-sierra = "=2.7.0-dev.0"
cairo-lang-starknet-classes = "=2.7.0-dev.0"
cairo-lang-utils = "=2.7.0-dev.0"
cairo-vm = "=1.0.0-rc3"
criterion = "0.3"
derive_more = "0.99.17"
glob = "0.3.1"
indexmap = "2.1.0"
keccak = "0.1.3"
log = "0.4"
num-bigint = "0.4"
num-integer = "0.1.45"
num-rational = { version = "0.4", features = ["serde"] }
once_cell = "1.19.0"
phf = { version = "0.11", features = ["macros"] }
pyo3 = "0.19.1"
pyo3-log = "0.8.1"
regex = "1.10.4"
rstest = "0.17.0"
serde = "1.0.193"
serde_json = "1.0.81"
starknet-crypto = "0.5.1"
tempfile = "3.7.0"
thiserror = "1.0.37"
clap = "4.3.10"
const_format = "0.2.30"
pretty_assertions = "1.4.0"
tower = "0.4.13"
url = "2.5.0"
validator = "0.12"
anyhow = "1.0.44"
assert-json-diff = "2.0.2"
async-stream = "0.3.3"
base64 = "0.13.0"
bitvec = "1.0.1"
bytes = "1"
byteorder = "1.4.3"
camelpaste = "0.1.0"
chrono = "0.4.26"
clap = "4.3.10"
colored = "2.1.0"
const_format = "0.2.30"
criterion = "0.3"
deadqueue = "0.2.4"
defaultmap = "0.5.0"
derive_more = "0.99.17"
enum-iterator = "1.4.1"
ethers = "2.0.3"
ethnum = "1.5.0"
flate2 = "1.0.24"
futures = "0.3.21"
futures-channel = "0.3.21"
futures-util = "0.3.21"
glob = "0.3.1"
hex = "0.4.3"
http = "0.2.8"
human_bytes = "0.4.3"
hyper = "0.14"
indexmap = "2.1.0"
insta = "1.29.0"
integer-encoding = "3.0.4"
itertools = "0.10.5"
jsonrpsee = "0.20.3"
jsonschema = "0.17.0"
keccak = "0.1.3"
lazy_static = "1.4.0"
libmdbx = "0.3.5"
libp2p = "0.53.2"
libp2p-swarm-test = "0.3.0"
log = "0.4"
lru = "0.12.0"
memmap2 = "0.8.0"
metrics = "0.21.0"
metrics-exporter-prometheus = "0.12.1"
mockall = "0.11.2"
mockito = "0.31.0"
num-bigint = "0.4"
num-integer = "0.1.45"
num-rational = { version = "0.4", features = ["serde"] }
num-traits = "0.2.15"
once_cell = "1.19.0"
os_info = "3.6.0"
page_size = "0.6.0"
phf = { version = "0.11", features = ["macros"] }
pretty_assertions = "1.4.0"
pyo3 = "0.19.1"
pyo3-log = "0.8.1"
regex = "1.10.4"
rstest = "0.17.0"
serde = "1.0.193"
serde_json = "1.0.81"
starknet-crypto = "0.5.1"
tempfile = "3.7.0"
thiserror = "1.0.37"
tower = "0.4.13"
url = "2.5.0"
validator = "0.12"
# fixating the version of parity-scale-codec and parity-scale-codec-derive due to an error in udeps.
# TODO: Remove this once udeps is fixed.
parity-scale-codec = "=3.6.9"
Expand All @@ -148,7 +150,7 @@ sha2 = "0.10.8"
sha3 = "0.10.8"
simple_logger = "4.0.0"
starknet-core = "0.6.0"
starknet-types-core = { version = "0.1.5", features = ["std", "hash", "prime-bigint"] }
starknet-types-core = { version = "0.1.5", features = ["hash", "prime-bigint", "std"] }
static_assertions = "1.1.0"
statistical = "1.0.0"
strum = "0.25.0"
Expand All @@ -167,11 +169,11 @@ void = "1.0.2"
zstd = "0.13.1"

[workspace.lints.rust]
warnings = "deny"
future-incompatible = "deny"
nonstandard-style = "deny"
rust-2018-idioms = "deny"
unused = "deny"
warnings = "deny"

[workspace.lints.clippy]
as_conversions = "deny"

0 comments on commit 95cf91e

Please sign in to comment.