-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1016 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
39
40
41
42
[package]
name = "aurora-controller-factory"
authors = ["Aurora Labs <[email protected]>"]
version = "0.1.0"
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
[lib]
crate-type = ["cdylib", "rlib"]
[lints.clippy]
all = "deny"
nursery = "deny"
pedantic = "deny"
[dependencies]
anyhow = "1"
hex = "0.4"
near-sdk = "5.5"
near-contract-standards = "5.5"
near-plugins = { git = "https://github.com/Near-One/near-plugins.git", rev = "e6e4b07" }
semver = { version = "1", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
[dev-dependencies]
near-gas = "0.3"
near-sdk = { version = "5.5", features = ["unit-testing"] }
near-workspaces = "0.14"
tokio = { version = "1", features = ["macros"] }
[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false
panic = "abort"
overflow-checks = true
strip = "symbols"