fixed/Cargo.toml

51 lines
1.1 KiB
TOML
Raw Normal View History

2019-01-26 13:02:58 -08:00
# Copyright © 20182019 Trevor Spiteri
2018-08-09 11:02:34 -07:00
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved. This file is offered as-is,
# without any warranty.
[package]
name = "fixed"
2019-06-27 14:54:28 -07:00
version = "0.3.3"
2018-08-09 11:02:34 -07:00
authors = ["Trevor Spiteri <tspiteri@ieee.org>"]
description = "Fixed-point numbers"
documentation = "https://docs.rs/fixed"
repository = "https://gitlab.com/tspiteri/fixed"
2018-08-09 11:02:34 -07:00
readme = "README.md"
keywords = ["mathematics", "numerics"]
2018-08-12 03:11:28 -07:00
categories = ["algorithms", "data-structures", "no-std", "science"]
2018-08-09 11:02:34 -07:00
license = "MIT/Apache-2.0"
edition = "2018"
autobenches = false
2018-08-09 11:02:34 -07:00
2018-08-23 04:12:32 -07:00
[features]
f16 = ["half"]
2019-01-25 18:59:00 -08:00
fail-on-warnings = []
2018-08-23 04:12:32 -07:00
2018-08-09 11:02:34 -07:00
[dependencies]
2018-08-15 11:14:36 -07:00
typenum = "1.8"
2018-08-23 04:12:32 -07:00
[dependencies.half]
2018-09-07 02:44:36 -07:00
version = "1.2"
2018-08-23 04:12:32 -07:00
optional = true
2019-01-26 15:39:24 -08:00
[dependencies.serde]
version = "1.0.25"
default-features = false
optional = true
[dev-dependencies]
rand = { version = "0.6", default-features = false }
rand_xoshiro = "0.2"
criterion = "0.2"
num-traits = { version = "0.2", default-features = false }
2018-08-23 04:12:32 -07:00
[package.metadata.docs.rs]
2019-01-26 15:39:24 -08:00
features = ["f16", "serde"]
[[bench]]
name = "bench_main"
harness = false