-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
50 lines (40 loc) · 1.01 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
[package]
name = "contract-interface"
version = "0.0.1"
authors = ["Thiago Machado <[email protected]>"]
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
contract-interface-types = {path = "contract-interface-types"}
contract-interface-macros = {path = "contract-interface-macros"}
near-sdk = "4.0.0-pre.2"
[dev-dependencies]
near-sdk = "4.0.0-pre.2"
contract-standards = {path = "contract-standards"}
[workspace]
members = [
"contract-interface-types",
"contract-interface-macros",
"contract-standards"
]
[[example]]
name = "example_01"
path = "examples/dummy/example_01/lib.rs"
crate-type = ["cdylib"]
[[example]]
name = "example_02"
path = "examples/dummy/example_02/lib.rs"
crate-type = ["cdylib"]
[[example]]
name = "example_03"
path = "examples/dummy/example_03/lib.rs"
crate-type = ["cdylib"]
[[example]]
name = "example_04"
path = "examples/dummy/example_04/lib.rs"
crate-type = ["cdylib"]
[[example]]
name = "example_05"
path = "examples/dummy/example_05/lib.rs"
crate-type = ["cdylib"]