parity-common/uint/Cargo.toml

30 lines
662 B
TOML
Raw Normal View History

2017-10-24 01:09:44 -07:00
[package]
description = "Large fixed-size integers arithmetics"
homepage = "http://parity.io"
2017-12-29 08:23:16 -08:00
repository = "https://github.com/paritytech/primitives"
2017-10-24 01:09:44 -07:00
license = "MIT/Apache-2.0"
name = "uint"
2018-02-04 03:53:35 -08:00
version = "0.1.2"
2017-10-24 01:09:44 -07:00
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"
[build-dependencies]
rustc_version = "0.2"
[dependencies]
byteorder = { version = "1", default-features = false }
2018-02-04 03:53:35 -08:00
heapsize = { version = "0.4.2", optional = true }
2017-10-30 10:00:58 -07:00
rustc-hex = { version = "1.0", optional = true }
2017-10-24 01:09:44 -07:00
[dev-dependencies]
crunchy = "0.1.5"
2017-10-24 01:09:44 -07:00
[features]
std = ["rustc-hex"]
2017-10-30 10:00:58 -07:00
heapsizeof = ["heapsize"]
2018-01-31 12:48:47 -08:00
use_asm = []
2017-10-24 01:09:44 -07:00
[[example]]
name = "modular"
required-features = ["std"]