forked from rust-num/num-traits
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
30 lines (26 loc) · 880 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
authors = ["The Rust Project Developers"]
description = "Numeric traits for generic mathematics"
documentation = "https://docs.rs/num-traits"
homepage = "https://github.com/rust-num/num-traits"
keywords = ["mathematics", "numerics"]
categories = ["algorithms", "science", "no-std"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-num/num-traits"
name = "num-traits"
version = "0.2.10"
readme = "README.md"
build = "build.rs"
exclude = ["/ci/*", "/.travis.yml", "/bors.toml", "/sgx/*"]
[package.metadata.docs.rs]
features = ["std"]
[dependencies]
#libm = { version = "0.2.0", optional = true }
sgx_tstd = { rev = "v1.1.3", git = "https://github.com/apache/teaclave-sgx-sdk.git", optional = true }
[features]
default = ["mesalock_sgx", "std", "i128"]
mesalock_sgx = ["sgx_tstd"]
std = ["mesalock_sgx"]
i128 = []
[build-dependencies]
autocfg = "0.1.3"