Cargo.toml 1.29 KB
Newer Older
Hero Bird's avatar
Hero Bird committed
1
2
3
4
5
6
[package]
name = "ink_abi"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
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
10
11
12
repository = "https://github.com/paritytech/ink"
documentation = "https://substrate.dev/substrate-contracts-workshop/#/"
homepage = "https://www.parity.io/"
description = "[ink!] Rust based eDSL for writing smart contracts for Substrate"
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]
Denis_P's avatar
Denis_P committed
18
19
serde = { version = "1.0.104", default-features = false, features = ["derive", "alloc"] }
derive_more = { version = "0.99.3", default-features = false, features = ["from"] }
20
21
ink_abi_derive = { path = "derive", default-features = false, optional = true }
ink_prelude = { path = "../prelude/", default-features = false }
22
ink_primitives = { path = "../primitives/", default-features = false }
Hero Bird's avatar
Hero Bird committed
23
24
type-metadata = { git = "https://github.com/type-metadata/type-metadata.git", default-features = false, features = ["derive"] }

25
[dev-dependencies]
Denis_P's avatar
Denis_P committed
26
serde_json = "1.0.48"
27

Hero Bird's avatar
Hero Bird committed
28
29
30
31
32
33
34
[features]
default = [
    "std",
    "derive",
]
std = [
    "ink_abi_derive/std",
35
    "ink_prelude/std",
Hero Bird's avatar
Hero Bird committed
36
37
38
    "serde/std",
    "type-metadata/std",
]
Hero Bird's avatar
Hero Bird committed
39
40
41
derive = [
    "ink_abi_derive"
]