-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 923 Bytes
/
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
38
[workspace.package]
authors = ["Aurora Labs <hello@aurora.dev>"]
version = "0.2.1"
edition = "2021"
homepage = "https://github.com/aurora-is-near/aurora-controller-factory"
repository = "https://github.com/aurora-is-near/aurora-controller-factory"
license = "CC0-1.0"
readme = "README.md"
publish = false
[workspace]
resolver = "2"
members = ["contract", "converter"]
[workspace.lints.clippy]
all = "deny"
nursery = "deny"
pedantic = "deny"
[workspace.dependencies]
anyhow = "1"
hex = "0.4"
near-plugins = { git = "https://github.com/Near-One/near-plugins.git", tag = "v0.4.1" }
semver = { version = "1", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
near-gas = "0.3"
near-sdk = "5.6"
near-workspaces = "0.15"
tokio = { version = "1", features = ["macros"] }
[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false
panic = "abort"
overflow-checks = true
strip = "symbols"