-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (33 loc) · 1.05 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
[workspace]
members = ["examples/*"]
resolver = "2"
[workspace.package]
version = "0.0.1"
edition = "2021"
rust-version = "1.76"
authors = ["Proximity Labs"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/Omni-rs/examples"
repository = "https://github.com/Omni-rs/examples"
publish = false
[workspace.dependencies]
near-sdk = { version = "5.5.0", features = ["schemars"] }
omni-transaction = { version = "0.1.1" }
near-workspaces = { version = "0.14.0", features = [
"experimental",
"unstable",
] }
tokio = { version = "1.12.0", features = ["full"] }
serde_json = "1"
hex = "0.4.3"
omni-testing-utilities = { git = "https://github.com/omni-rs/omni-testing-utilities", branch = "main" }
omni-box = { version = "0.1.2" }
# omni-box = { path = "../omni-box" }
[profile.release]
codegen-units = 1
opt-level = "z" # Tell `rustc` to optimize for small code size.
lto = true
debug = false
panic = "abort"
overflow-checks = true # Opt into extra safety checks on arithmetic operations https://stackoverflow.com/a/64136471/249801
[workspace.lints]