fixed/Cargo.toml

33 lines
822 B
TOML
Raw Normal View History

2018-08-09 11:02:34 -07:00
# Copyright © 2018 Trevor Spiteri
# 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"
2018-11-29 00:55:39 -08:00
version = "0.1.4"
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"
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
[package.metadata.docs.rs]
features = ["f16"]