-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 788 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 788 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
[package]
name = "request_conversion_proxy"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
near-sdk = "3.1.0"
serde = "1.0.118"
# near-sdk = "4.0.0-pre.4"
hex = "0.4"
bs58 = "0.5.0"
[dev-dependencies]
near-sdk-sim = "3.2.0"
conversion_proxy = { path = "./conversion_proxy" }
fungible_conversion_proxy = { path = "./fungible_conversion_proxy" }
fungible_proxy = { path = "./fungible_proxy" }
mocks = { path = "./mocks" }
[profile.release]
codegen-units = 1
# Tell `rustc` to optimize for small code size.
opt-level = "z"
lto = true
debug = false
panic = "abort"
overflow-checks = true
[workspace]
members = ["conversion_proxy", "fungible_conversion_proxy", "fungible_proxy", "mocks"]