-
Notifications
You must be signed in to change notification settings - Fork 450
/
Copy pathCargo.toml
46 lines (39 loc) · 1.56 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
[package]
name = "ink_lang_macro"
version = "3.0.0-rc3"
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/paritytech/ink"
documentation = "https://docs.rs/ink_lang_macro/"
homepage = "https://www.parity.io/"
description = "[ink!] Rust based eDSL for writing smart contracts for Substrate"
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"]
categories = ["no-std", "embedded"]
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
[dependencies]
ink_lang_ir = { version = "3.0.0-rc3", path = "../ir", default-features = false }
ink_lang_codegen = { version = "3.0.0-rc3", path = "../codegen", default-features = false }
ink_primitives = { version = "3.0.0-rc3", path = "../../primitives/", default-features = false }
scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"] }
syn = "1"
proc-macro2 = "1"
[dev-dependencies]
ink_metadata = { version = "3.0.0-rc3", path = "../../metadata/" }
ink_env = { version = "3.0.0-rc3", path = "../../env/" }
ink_storage = { version = "3.0.0-rc3", path = "../../storage/" }
ink_lang = { version = "3.0.0-rc3", path = ".." }
ink_prelude = { version = "3.0.0-rc3", path = "../../prelude/" }
trybuild = "1.0.24"
scale-info = { version = "0.6", default-features = false, features = ["derive"] }
[lib]
name = "ink_lang_macro"
proc-macro = true
[features]
default = ["std"]
std = [
"scale/std",
"ink_lang_ir/std",
"ink_primitives/std",
]