-
Notifications
You must be signed in to change notification settings - Fork 478
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1.27 KB
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
[package]
name = "ink_metadata"
version = "4.0.0-alpha.3"
authors = ["Parity Technologies <admin@parity.io>", "Robin Freyler <robin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/paritytech/ink"
documentation = "https://docs.rs/ink_metadata/"
homepage = "https://www.parity.io/"
description = "[ink!] Metadata definitions for ink! smart contracts."
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"]
categories = ["no-std", "embedded"]
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
[dependencies]
ink_prelude = { version = "4.0.0-alpha.3", path = "../prelude/", default-features = false }
ink_primitives = { version = "4.0.0-alpha.3", path = "../primitives/", default-features = false }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }
impl-serde = "0.4.0"
derive_more = { version = "0.99", default-features = false, features = ["from"] }
scale-info = { version = "2.3", default-features = false, features = ["derive", "serde", "decode"] }
[dev-dependencies]
pretty_assertions = "1"
serde_json = "1"
[features]
default = [
"std",
"derive",
]
std = [
"ink_prelude/std",
"ink_primitives/std",
"serde/std",
"scale-info/std",
]
derive = []