-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
40 lines (33 loc) · 915 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
31
32
33
34
35
36
37
38
39
40
[package]
authors = ["The Rust Project Developers"]
description = "External iterators for generic mathematics"
documentation = "https://docs.rs/num-iter"
homepage = "https://github.com/rust-num/num-iter"
keywords = ["mathematics", "numerics"]
categories = ["algorithms", "science", "no-std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-num/num-iter"
name = "num-iter"
version = "0.1.45"
readme = "README.md"
exclude = ["/ci/*", "/.github/*"]
edition = "2018"
rust-version = "1.31"
[package.metadata.docs.rs]
features = ["std"]
[dependencies]
[dependencies.num-integer]
version = "0.1.46"
default-features = false
features = ["i128"]
[dependencies.num-traits]
version = "0.2.11"
default-features = false
features = ["i128"]
[features]
default = ["std"]
std = ["num-integer/std", "num-traits/std"]
# vestigial features, now always in effect
i128 = []
[build-dependencies]
autocfg = "1"