fixed/Cargo.toml

22 lines
673 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-08-11 12:10:03 -07:00
version = "0.1.1"
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"
[dependencies]
2018-08-10 11:05:51 -07:00
typenum = "1.3"