-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (34 loc) · 1.01 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
[workspace]
members = [
".",
"solid-core",
"solid-derive",
"cargo-solid",
"examples/contract-call",
"examples/cargo-solid-example"
]
[package]
name = "solid"
version = "0.1.5"
authors = ["Daniel Akhterov <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Solidity encoding/decoding library"
homepage = "https://github.com/danielakhterov/solid"
repository = "https://github.com/danielakhterov/solid"
keywords = [ "solidity", "encoding", "decoding" ]
[dependencies]
solid-derive = { path = "solid-derive", version = "0.1.0", optional = true }
solid-core = { path = "solid-core", version = "0.1.0", default-features = false }
serde = "1.0.104"
[dev-dependencies]
[features]
default = [ "deser", "derive" ]
deser = [ "solid-core/derive" ]
derive = [ "solid-derive" ]
nightly = [ "solid-core/nightly" ]
bigint = [ "solid-core/bigint" ]
ethereum_types = [ "solid-core/eth_types" ]
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu"]