-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
69 lines (56 loc) · 2.36 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[workspace]
members = ["script", "services", "primitives", "program"]
resolver = "2"
[workspace.dependencies]
# Avail
avail-subxt = { git = "https://github.com/availproject/avail.git", tag = "v2.2.5.1" }
sp-core = { git = "https://github.com/availproject/polkadot-sdk.git", tag = "polkadot-1.7.1-patch-10", default-features = false }
subxt = "0.34"
codec = { package = "parity-scale-codec", version = "3", default-features = false }
# Cryptography
ed25519-consensus = { version = "2.1", default-features = false }
sha2 = { version = "0.10.8", default-features = false }
blake2 = "0.10.6"
# Alloy
alloy-primitives = { version = "0.8.0", features = ["serde"] }
alloy = { version = "0.8.0", features = ["full"] }
alloy-sol-types = { version = "0.8.0" }
# Common
anyhow = "1.0.68"
clap = { version = "4.0", features = ["derive"] }
dotenv = "0.15.0"
env_logger = "0.9.0"
hex = "0.4.3"
log = "0.4.14"
serde_json = "1.0.86"
tokio = { version = "1.2.0", features = ["full"] }
serde = { version = "1", features = ["derive"] }
itertools = "0.10.5"
chrono = "0.4.39"
# sp1
sp1-sdk = "4.0.0-rc.9"
sp1-build = "4.0.0-rc.9"
sp1-zkvm = "4.0.0-rc.9"
reqwest = { version = "0.11.20", features = ["json"] }
futures = "0.3.30"
aws-config = { version = "1.5.1", features = ["behavior-version-latest"] }
aws-sdk-dynamodb = "1.34.0"
sp1-vectorx-script = { path = "script" }
sp1-vectorx-program = { path = "program" }
services = { path = "services" }
sp1-vector-primitives = { path = "primitives" }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[profile.dev]
opt-level = 0
debug = true
[patch.crates-io]
sp-core = { git = "https://github.com/availproject/polkadot-sdk.git", tag = "polkadot-1.7.1-patch-10" }
sp-io = { git = "https://github.com/availproject/polkadot-sdk.git", tag = "polkadot-1.7.1-patch-10" }
sp-runtime = { git = "https://github.com/availproject/polkadot-sdk.git", tag = "polkadot-1.7.1-patch-10" }
sp-std = { git = "https://github.com/availproject/polkadot-sdk.git", tag = "polkadot-1.7.1-patch-10" }
sha2-v0-9-9 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", tag = "patch-sha2-0.9.9-sp1-4.0.0-rc.3" }
sha2-v0-10-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", tag = "patch-sha2-0.10.8-sp1-4.0.0-rc.3" }
curve25519-dalek-ng = { git = "https://github.com/sp1-patches/curve25519-dalek-ng", tag = "patch-4.1.1-sp1-4.0.0-rc.3" }