-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
executable file
·51 lines (44 loc) · 1.36 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
[package]
name = "factory"
version = "0.1.0"
authors = ["MJ"]
edition = "2021"
[dependencies]
ink_primitives = { version = "4.0.0-alpha.1", default-features = false }
ink_metadata = { version = "4.0.0-alpha.1", default-features = false, features = ["derive"], optional = true }
ink_env = { version = "4.0.0-alpha.1", default-features = false }
ink_storage = { version = "4.0.0-alpha.1", default-features = false }
ink_lang = { version = "4.0.0-alpha.1", default-features = false }
ink_prelude = { version = "4.0.0-alpha.1", default-features = false }
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
scale-info = { version = "2", default-features = false, features = ["derive"], optional = true }
pair = { path = "./pair", default-features = false, features = ["ink-as-dependency"] }
# erc20 = { path = "erc20", default-features = false, features = ["ink-as-dependency"] }
[lib]
name = "factory"
path = "lib.rs"
crate-type = [
# Used for normal contract Wasm blobs.
"cdylib",
"rlib",
]
[features]
default = ["std"]
std = [
"ink_metadata/std",
"ink_env/std",
"ink_storage/std",
"ink_primitives/std",
"ink_lang/std",
"ink_prelude/std",
"scale/std",
"scale-info/std",
"pair/std",
# "erc20/std",
]
ink-as-dependency = []
# [workspace]
# members = [
# "../pair",
# # "erc20",
# ]