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

7
license = "Apache-2.0"
Hero Bird's avatar
Hero Bird committed
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_metadata/"
Hero Bird's avatar
Hero Bird committed
11
homepage = "https://www.parity.io/"
12
description = "[ink!] Metadata definitions for ink! smart contracts."
Hero Bird's avatar
Hero Bird committed
13
14
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"]
categories = ["no-std", "embedded"]
Hero Bird's avatar
Hero Bird committed
15
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
Hero Bird's avatar
Hero Bird committed
16
17

[dependencies]
18
19
ink_prelude = { version = "3.0.0-rc1", path = "../prelude/", default-features = false }
ink_primitives = { version = "3.0.0-rc1", path = "../primitives/", default-features = false }
20

21
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }
Andrew Jones's avatar
Andrew Jones committed
22
impl-serde = "0.3.1"
23
derive_more = { version = "0.99", default-features = false, features = ["from"] }
Andrew Jones's avatar
Andrew Jones committed
24
scale-info = { version = "0.4", default-features = false, features = ["derive"] }
Hero Bird's avatar
Hero Bird committed
25

26
[dev-dependencies]
27
pretty_assertions = "0.6.1"
28
serde_json = "1.0"
29

Hero Bird's avatar
Hero Bird committed
30
31
32
33
34
35
[features]
default = [
    "std",
    "derive",
]
std = [
36
    "ink_prelude/std",
Hero Bird's avatar
Hero Bird committed
37
    "serde/std",
Andrew Jones's avatar
Andrew Jones committed
38
    "scale-info/std",
Hero Bird's avatar
Hero Bird committed
39
]
40
derive = []