-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 886 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 886 Bytes
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
[workspace]
resolver = "2"
members = [
"contracts/zk-verifier",
"contracts/smart-wallet",
"contracts/jwk-registry",
"contracts/gateway-factory",
"contracts/x402-facilitator",
"prover",
"salt-service",
]
[workspace.package]
version = "0.1.0"
authors = ["Stellar Gateway Team"]
edition = "2021"
license = "MIT"
repository = "https://github.com/stellar-gateway/stellar-gateway"
[workspace.dependencies]
# Protocol 25 (X-Ray) - Latest Soroban SDK with BN254 and Poseidon support
soroban-sdk = "25.0.0-rc.2"
soroban-token-sdk = "25.0.0-rc.2"
# Official Stellar Poseidon SDK for ZK-friendly hashing
soroban-poseidon = "25.0.0-rc.1"
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[profile.release-with-logs]
inherits = "release"
debug-assertions = true