forked from scout-off/scout-off-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 996 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (33 loc) · 996 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
[workspace]
members = [
"contracts/shared-types",
"contracts/registration",
"contracts/verification",
"contracts/progress",
"contracts/scout_access",
]
resolver = "2"
[workspace.package]
# When bumping this version, also update docs/VERSIONING.md Version History.
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
soroban-sdk = { version = "25.3.1" }
soroban-sdk-testutils = { version = "25.3.1", package = "soroban-sdk", features = ["testutils"] }
ed25519-dalek = "=3.0.0-rc.0"
[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
[patch.crates-io]
# Pin hashbrown to the v0.14.5 source known to compile for Soroban SDK 25.x
# WASM builds; this override was introduced with validator vector tracking.
hashbrown = { git = 'https://github.com/rust-lang/hashbrown.git', tag = 'v0.14.5' }