-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
144 lines (133 loc) · 4.57 KB
/
Cargo.toml
File metadata and controls
144 lines (133 loc) · 4.57 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
[package]
name = "charms"
description = "Programmable assets on Bitcoin and beyond"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
[workspace]
members = [
".",
"charms-app-runner",
"charms-client",
"charms-data",
"charms-lib",
"charms-proof-wrapper",
"charms-sdk",
]
exclude = ["charms-spell-checker"]
resolver = "3"
[workspace.package]
version = "12.0.1"
edition = "2024"
authors = ["Ivan Mikushin <ivan@charms.dev>"]
license = "MIT"
repository = "https://github.com/CharmsDev/charms"
homepage = "https://charms.dev"
[workspace.dependencies]
anyhow = { version = "1.0.102" }
ark-bls12-381 = { version = "0.5.0" }
ark-ec = { version = "0.5.0" }
ark-ff = { version = "0.5.0" }
ark-groth16 = { version = "0.5.0" }
ark-relations = { version = "0.5.1" }
ark-serialize = { version = "0.5.0" }
ark-snark = { version = "0.5.1" }
ark-std = { version = "0.5.0" }
bitcoin = { version = "0.32.8" }
ciborium = { version = "0.2.2" }
ciborium-io = { version = "0.2.2" }
cml-chain = { version = "6.2.0", default-features = false }
cml-core = { version = "6.2.0", default-features = false }
hex = { version = "0.4.3" }
pallas-addresses = { version = "0.35.0" }
pallas-codec = { version = "0.35.0" }
pallas-crypto = { version = "0.35.0" }
pallas-primitives = { version = "0.35.0" }
pallas-txbuilder = { version = "0.35.0" }
proptest = { version = "1.10.0" }
proptest-derive = { version = "0.8.0" }
serde = { version = "1.0" }
serde_json = { version = "1.0.149" }
serde_yaml = { version = "0.9.34" }
sha2 = { version = "0.10.9" }
sp1-core-machine = { version = "6.0.2" }
sp1-cuda = { version = "6.0.2" }
sp1-primitives = { version = "6.0.2" }
sp1-prover = { version = "6.0.2" }
sp1-sdk = { version = "6.0.2", default-features = false, features = ["network"] }
sp1-verifier = { version = "6.0.2", default-features = false }
sp1-zkvm = { version = "6.0.2" }
test-strategy = { version = "0.4.5" }
tracing = { version = "0.1" }
[features]
prover = ["sp1-sdk/native-gnark", "sp1-prover/native-gnark", "redis", "rslock"]
none = []
[dependencies]
anyhow = { workspace = true }
ark-bls12-381 = { workspace = true }
ark-ec = { workspace = true }
ark-ff = { workspace = true }
ark-groth16 = { workspace = true }
ark-relations = { workspace = true }
ark-serialize = { workspace = true }
ark-snark = { workspace = true }
ark-std = { workspace = true }
axum = { version = "0.8.8", features = ["http2"] }
axum-macros = { version = "0.5.0" }
bech32 = { version = "0.11.1" }
bincode = { version = "1.3.3" }
bitcoin = { workspace = true, features = ["rand", "rand-std"] }
candid = { version = "0.10" }
charms-app-runner = { path = "./charms-app-runner", version = "12.0.1" }
charms-client = { path = "./charms-client", version = "12.0.1" }
charms-data = { path = "./charms-data", version = "12.0.1" }
charms-lib = { path = "./charms-lib", version = "12.0.1" }
charms-proof-wrapper = { path = "./charms-proof-wrapper", version = "12.0.1" }
clap = { version = "4.6.0", features = ["derive"] }
clap_complete = { version = "4.6.0", features = ["unstable-dynamic"] }
cml-chain = { workspace = true }
cml-core = { workspace = true }
const_format = { version = "0.2.35" }
hex = { workspace = true }
hex-literal = { version = "1.1.0" }
ic-agent = { version = "0.46" }
pallas-addresses = { workspace = true }
pallas-codec = { workspace = true }
pallas-crypto = { workspace = true }
pallas-primitives = { workspace = true }
pallas-txbuilder = { workspace = true }
redis = { version = "0.32.7", optional = true, features = ["tokio-rustls-comp"] }
redis-macros = { version = "0.5.6" }
reqwest = { version = "0.13.2", features = ["json"] }
rslock = { version = "0.7.4", optional = true, features = ["tokio-comp"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
serde_with = { version = "3.18.0", features = ["base64"] }
serde_yaml = { workspace = true }
sha2 = { workspace = true }
sp1-core-machine = { workspace = true }
sp1-cuda = { workspace = true }
sp1-prover = { workspace = true }
sp1-sdk = { workspace = true }
tokio = { version = "1.50", features = ["full"] }
toml = { version = "1.0.7" }
tower-http = { version = "0.6.8", features = ["cors"] }
tracing = { workspace = true }
tracing-forest = { version = "0.3.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
proptest = { workspace = true }
proptest-derive = { workspace = true }
[profile.test]
lto = "off"
opt-level = 3
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 3
strip = "debuginfo"
overflow-checks = true
panic = "abort"