-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 862 Bytes
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 862 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.package]
version = "1.0.3"
authors = ["Fastnear Inc <hello@fastnear.com>"]
edition = "2024"
repository = "https://github.com/fastnear/house-of-stake-contracts"
rust-version = "1.85.1"
license = "MIT OR Apache-2.0"
[workspace]
resolver = "3"
members = [
"lockup-contract",
"venear-contract",
"voting-contract",
"merkle-tree",
"common",
"integration-tests",
"sandbox-staking-whitelist-contract",
]
[workspace.dependencies]
near-sdk = { version = "=5.9.0", features = ["wee_alloc", "unstable"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
uint = { version = "0.10.0", default-features = false }
hex = "0.4.3"
[profile.dev]
overflow-checks = true
[profile.test]
overflow-checks = true
[profile.release]
codegen-units = 1
opt-level = "s"
lto = true
debug = false
panic = "abort"
overflow-checks = true