-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·48 lines (40 loc) · 1.27 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
[package]
name = "invarch_ink_environment"
version = "0.1.0"
authors = ["[your_name] <[your_email]>"]
edition = "2021"
[dependencies]
ink_primitives = { version = "3.0.1", default-features = false }
ink_metadata = { version = "3.0.1", default-features = false, features = ["derive"], optional = true }
ink_env = { version = "3.0.1", default-features = false }
ink_storage = { version = "3.0.1", default-features = false }
ink_lang = { version = "3.0.1", default-features = false }
ink_prelude = { version = "3.0.1", default-features = false }
scale = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
scale-info = { version = "2", default-features = false, features = ["derive"], optional = true }
# TODO: Change to the actual git repo.
invarch-runtime-primitives = { path = "../InvArch-Node/runtime-primitives", default-features = false }
[lib]
name = "invarch_ink_environment"
path = "lib.rs"
crate-type = [
"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",
"invarch-runtime-primitives/std"
]
ink-as-dependency = []
[workspace]
members = [
"example"
]