-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
35 lines (31 loc) · 908 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
[package]
name = "aerx-near-contracts"
version = "0.0.1"
authors = ["Near Inc <hello@near.org>"]
edition = "2018"
[dev-dependencies]
near-sdk = "3.1.0"
near-sdk-sim = "3.1.1"
# remember to include a line for each contract
approval-receiver = { path = "./tests/test-approval-receiver" }
token-receiver = { path = "./tests/test-token-receiver" }
aerx-content-nft = { path = "./contracts/aerx_content_nft" }
aex-token = { path = "./contracts/aex_token" }
aerx-profile-nft = { path = "./contracts/aerx_profile_nft"}
[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]
# remember to include a member for each contract
members = [
"contracts/aerx_content_nft",
"contracts/aex_token",
"contracts/aerx_profile_nft",
"tests/test-approval-receiver",
"tests/test-token-receiver",
]