Skip to content

Commit 7ec533e

Browse files
trimming deps
1 parent 6eea609 commit 7ec533e

File tree

7 files changed

+7
-167
lines changed

7 files changed

+7
-167
lines changed

Cargo.lock

Lines changed: 0 additions & 63 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,11 @@ prism-groth16 = { path = "crates/groth16" }
8585
sp1-helper = "1.2.0"
8686

8787
[patch.crates-io]
88-
sha2-v0-9-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.9.8" }
89-
sha2-v0-10-6 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.10.6" }
9088
sha2-v0-10-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.10.8" }
9189

92-
[workspace.dev-dependencies]
93-
serial_test = "3.1.1"
94-
criterion = "0.5.1"
90+
# [workspace.dev-dependencies]
91+
# serial_test = "3.1.1"
92+
# criterion = "0.5.1"
9593

9694
# [[bench]]
9795
# name = "zk_benchmarks"

crates/common/Cargo.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,3 @@ hex.workspace = true
1616
sha2.workspace = true
1717
blake2.workspace = true
1818
celestia-types.workspace = true
19-
20-
[patch.crates-io]
21-
sha2-v0-9-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.9.8" }
22-
blake2 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "blake2", branch = "master" }
23-
sha2-v0-10-6 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.10.6" }
24-
sha2-v0-10-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.10.8" }

crates/errors/Cargo.toml

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -7,52 +7,8 @@ homepage.workspace = true
77
repository.workspace = true
88

99
[dependencies]
10-
axum = { workspace = true }
11-
borsh = { workspace = true }
12-
tower-http = { workspace = true }
13-
utoipa = { workspace = true }
14-
utoipa-swagger-ui = { workspace = true }
15-
async-trait = { workspace = true }
16-
serde = { workspace = true }
17-
serde_json = { workspace = true }
18-
redis = { workspace = true }
1910
ed25519-dalek = { workspace = true }
2011
ed25519 = { workspace = true }
21-
base64 = { workspace = true }
22-
tokio = { workspace = true }
23-
bellman = { workspace = true }
24-
bls12_381 = { workspace = true }
25-
rand = { workspace = true }
26-
hex = { workspace = true }
27-
ff = { workspace = true }
28-
log = { workspace = true }
29-
pretty_env_logger = { workspace = true }
30-
clap = { workspace = true }
31-
config = { workspace = true }
3212
thiserror = { workspace = true }
33-
indexed-merkle-tree = { workspace = true }
34-
dotenvy = { workspace = true }
35-
celestia-rpc = { workspace = true }
36-
celestia-types = { workspace = true }
37-
mockall = { workspace = true }
38-
keystore-rs = { workspace = true }
39-
toml = { workspace = true }
40-
dirs = { workspace = true }
4113
anyhow = { workspace = true }
42-
jmt = { workspace = true, path = "../jmt", features = ["mocks"] }
4314
sha2 = { workspace = true }
44-
auto_impl = { workspace = true }
45-
prism-common = { workspace = true }
46-
47-
[patch.crates-io]
48-
sha2-v0-9-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.9.8" }
49-
sha2-v0-10-6 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.10.6" }
50-
sha2-v0-10-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.10.8" }
51-
52-
[dev-dependencies]
53-
serial_test = "3.1.1"
54-
criterion = "0.5.1"
55-
56-
# [[bench]]
57-
# name = "zk_benchmarks"
58-
# harness = false

crates/groth16/Cargo.toml

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -7,53 +7,22 @@ homepage.workspace = true
77
repository.workspace = true
88

99
[dependencies]
10-
axum = { workspace = true }
1110
borsh = { workspace = true }
12-
tower-http = { workspace = true }
13-
utoipa = { workspace = true }
14-
utoipa-swagger-ui = { workspace = true }
15-
async-trait = { workspace = true }
1611
serde = { workspace = true }
1712
serde_json = { workspace = true }
18-
redis = { workspace = true }
1913
ed25519-dalek = { workspace = true }
2014
ed25519 = { workspace = true }
21-
base64 = { workspace = true }
22-
tokio = { workspace = true }
2315
bellman = { workspace = true }
2416
bls12_381 = { workspace = true }
2517
rand = { workspace = true }
2618
hex = { workspace = true }
2719
ff = { workspace = true }
2820
log = { workspace = true }
29-
pretty_env_logger = { workspace = true }
30-
clap = { workspace = true }
31-
config = { workspace = true }
3221
thiserror = { workspace = true }
3322
indexed-merkle-tree = { workspace = true }
34-
dotenvy = { workspace = true }
35-
celestia-rpc = { workspace = true }
3623
celestia-types = { workspace = true }
37-
mockall = { workspace = true }
38-
keystore-rs = { workspace = true }
39-
toml = { workspace = true }
40-
dirs = { workspace = true }
4124
anyhow = { workspace = true }
42-
jmt = { workspace = true, path = "../jmt", features = ["mocks"] }
25+
jmt = { workspace = true }
4326
sha2 = { workspace = true }
44-
auto_impl = { workspace = true }
4527
prism-common = { workspace = true }
4628
prism-errors = { workspace = true }
47-
48-
[patch.crates-io]
49-
sha2-v0-9-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.9.8" }
50-
sha2-v0-10-6 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.10.6" }
51-
sha2-v0-10-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.10.8" }
52-
53-
[dev-dependencies]
54-
serial_test = "3.1.1"
55-
criterion = "0.5.1"
56-
57-
# [[bench]]
58-
# name = "zk_benchmarks"
59-
# harness = false

crates/nova/Cargo.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,11 @@ thiserror = { workspace = true }
2121
indexed-merkle-tree = { workspace = true }
2222
celestia-types = { workspace = true }
2323
anyhow = { workspace = true }
24-
jmt = { workspace = true, path = "../jmt", features = ["mocks"] }
24+
jmt = { workspace = true }
2525
bellpepper-core = { workspace = true }
2626
bellpepper = { workspace = true }
27-
arecibo = { workspace = true, git = "https://github.com/deltadevsde/arecibo" }
27+
arecibo = { workspace = true }
2828
itertools = { workspace = true }
2929
sha2 = { workspace = true }
3030
bincode = { workspace = true }
3131
prism-common = { workspace = true }
32-
33-
[patch.crates-io]
34-
sha2-v0-9-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.9.8" }
35-
sha2-v0-10-6 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.10.6" }
36-
sha2-v0-10-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.10.8" }

crates/prism/Cargo.toml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,13 @@ keystore-rs = { workspace = true }
3939
toml = { workspace = true }
4040
dirs = { workspace = true }
4141
anyhow = { workspace = true }
42-
jmt = { workspace = true, path = "../jmt", features = ["mocks"] }
42+
jmt = { workspace = true }
4343
sha2 = { workspace = true }
4444
auto_impl = { workspace = true }
4545
prism-common = { workspace = true }
4646
prism-errors = { workspace = true }
4747
prism-groth16 = { workspace = true }
4848

49-
[patch.crates-io]
50-
sha2-v0-9-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.9.8" }
51-
sha2-v0-10-6 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.10.6" }
52-
sha2-v0-10-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-sha2-v0.10.8" }
53-
5449
[dev-dependencies]
5550
serial_test = "3.1.1"
5651
criterion = "0.5.1"
57-
58-
# [[bench]]
59-
# name = "zk_benchmarks"
60-
# harness = false

0 commit comments

Comments
 (0)