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"
|
2017-03-29 15:17:27 +02:00
|
|
|
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-05-11 15:34:35 +02:00
|
|
|
version = "0.1.3"
|
2016-12-11 19:43:58 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2016-02-29 22:21:15 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2017-07-06 11:26:14 +02:00
|
|
|
bigint = "3.0"
|
|
|
|
rustc-hex = "1.0"
|
2016-07-25 20:19:33 +02:00
|
|
|
rand = "0.3.12"
|
2017-01-13 09:52:23 +01:00
|
|
|
libc = "0.2"
|
2017-07-06 11:26:14 +02:00
|
|
|
heapsize = { version = "0.4", optional = true }
|
2016-02-29 22:21:15 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
x64asm_arithmetic=[]
|
|
|
|
rust_arithmetic=[]
|
2017-07-06 11:26:14 +02:00
|
|
|
heapsizeof = ["heapsize", "bigint/heapsizeof"]
|