forked from Supercolony-net/openbrush-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (49 loc) · 1.09 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[workspace]
members = [
"contracts",
"utils/brush_lang",
"utils/brush_derive",
]
exclude = [
"examples",
"example_project_structure",
"mock"
]
[package]
name = "brush"
version = "1.6.1"
authors = ["Supercolony <[email protected]>"]
edition = "2018"
[dependencies]
contracts = { path = "./contracts", default-features = false }
brush_lang = { path = "./utils/brush_lang", default-features = false }
[lib]
name = "brush"
path = "lib.rs"
crate-type = [
"rlib",
]
[features]
default = ["std"]
std = [
"contracts/std",
"brush_lang/std",
]
psp22 = ["contracts/psp22"]
psp34 = ["contracts/psp34"]
psp1155 = ["contracts/psp1155"]
ownable = ["contracts/ownable"]
access_control = ["contracts/access_control"]
payment_splitter = ["contracts/payment_splitter"]
reentrancy_guard = ["contracts/reentrancy_guard"]
pausable = ["contracts/pausable"]
timelock_controller = ["contracts/timelock_controller"]
proxy = ["contracts/proxy"]
diamond = ["contracts/diamond"]
[profile.release]
panic = "abort"
lto = true
[profile.dev]
panic = "abort"
lto = true
overflow-checks = false