-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
28 lines (25 loc) · 1003 Bytes
/
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
[package]
name = "etcommon-bigint"
version = "0.2.10"
license = "Apache-2.0"
authors = ["Wei Tang <[email protected]>"]
description = "Big integer (256-bit and 512-bit) implementation for SputnikVM and other Ethereum Classic clients."
repository = "https://github.com/ethereumproject/etcommon-rs"
keywords = ["no_std"]
[lib]
name = "bigint"
[dependencies]
heapsize = { version = "0.4", optional = true }
byteorder = { version = "1.0", default-features = false }
rand = { version = "0.3.12", optional = true }
libc = { version = "0.2", optional = true }
etcommon-rlp = { version = "0.2", path = "../rlp", default-features = false, optional = true }
etcommon-hexutil = { version = "0.2", path = "../hexutil", default-features = false, optional = true }
[features]
default = ["std", "rlp", "string"]
heapsizeof = ["heapsize"]
x64asm_arithmetic = []
rust_arithmetic = []
rlp = ["etcommon-rlp"]
string = ["etcommon-hexutil"]
std = ["byteorder/std", "rand", "libc", "etcommon-rlp/std", "etcommon-hexutil/std"]