Cargo.toml 1.49 KB
Newer Older
1
[package]
2
name = "ink_lang_macro"
Hero Bird's avatar
Hero Bird committed
3
version = "3.0.0-rc2"
Hero Bird's avatar
Hero Bird committed
4
authors = ["Parity Technologies <admin@parity.io>", "Robin Freyler <robin@parity.io>"]
5
6
edition = "2018"

7
license = "Apache-2.0"
8
readme = "README.md"
Hero Bird's avatar
Hero Bird committed
9
repository = "https://github.com/paritytech/ink"
Hero Bird's avatar
Hero Bird committed
10
documentation = "https://docs.rs/ink_lang_macro/"
Hero Bird's avatar
Hero Bird committed
11
homepage = "https://www.parity.io/"
12
13
14
15
16
17
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]
Hero Bird's avatar
Hero Bird committed
18
19
20
ink_lang_ir = { version = "3.0.0-rc2", path = "../ir", default-features = false }
ink_lang_codegen = { version = "3.0.0-rc2", path = "../codegen", default-features = false }
ink_primitives = { version = "3.0.0-rc2", path = "../../primitives/", default-features = false }
21

22
scale = { package = "parity-scale-codec", version = "2.0", default-features = false, features = ["derive"] }
23
24
syn = "1"
proc-macro2 = "1"
25
26

[dev-dependencies]
Hero Bird's avatar
Hero Bird committed
27
28
29
30
ink_metadata = { version = "3.0.0-rc2", path = "../../metadata/" }
ink_env = { version = "3.0.0-rc2", path = "../../env/" }
ink_storage = { version = "3.0.0-rc2", path = "../../storage/" }
ink_lang = { version = "3.0.0-rc2", path = ".." }
31

32
trybuild = "1.0.24"
33
scale-info = { version = "0.5", default-features = false, features = ["derive"] }
34

35
[lib]
36
name = "ink_lang_macro"
37
38
39
proc-macro = true

[features]
40
default = ["std"]
41
42
std = [
    "scale/std",
43
    "ink_lang_ir/std",
44
    "ink_primitives/std",
45
]