-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 953 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 953 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
[workspace.package]
version = "0.2.0"
edition = "2024"
repository = "https://github.com/aurora-is-near/aurora-proxy-token"
publish = false
[workspace]
resolver = "3"
members = ["factory", "proxy-token", "tests"]
[workspace.dependencies]
anyhow = "1"
aurora-engine-sdk = { version = "1.2", features = ["std"] }
aurora-engine-types = { version = "1.2", features = ["std"] }
near-contract-standards = "5"
near-plugins = { git = "https://github.com/Near-One/near-plugins.git", tag = "v0.5.0" }
near-sdk = "5"
near-workspaces = { version = "0.18", features = ["unstable"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
similar_names = "allow"
[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false
panic = "abort"
overflow-checks = true
strip = "symbols"