openethereum/util/bigint/Cargo.toml

23 lines
588 B
TOML
Raw Normal View History

2016-02-29 22:21:15 +01:00
[package]
2016-09-13 15:26:31 +02:00
description = "Large fixed-size integers and hash function outputs"
2016-12-11 19:43:58 +01:00
homepage = "http://parity.io"
repository = "https://github.com/paritytech/parity"
2017-05-11 15:34:35 +02:00
license = "MIT/Apache-2.0"
2016-09-13 15:26:31 +02:00
name = "ethcore-bigint"
2017-11-06 12:52:38 +01:00
version = "0.2.1"
2016-12-11 19:43:58 +01:00
authors = ["Parity Technologies <admin@parity.io>"]
2016-02-29 22:21:15 +01:00
[dependencies]
bigint = "4.0"
rustc-hex = "1.0"
2016-07-25 20:19:33 +02:00
rand = "0.3.12"
libc = "0.2"
heapsize = { version = "0.4", optional = true }
2017-11-06 12:03:59 +01:00
plain_hasher = { path = "../plain_hasher", version = "0.1" }
2016-02-29 22:21:15 +01:00
[features]
x64asm_arithmetic=[]
rust_arithmetic=[]
2017-11-06 12:52:38 +01:00
std = ["bigint/std"]
heapsizeof = ["heapsize", "bigint/heapsizeof"]