-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
53 lines (48 loc) · 1.37 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "apint"
version = "0.2.0" # Don't forget to update html_root_url in lib.rs.
authors = ["Robin Freyler <[email protected]>", "Aaron Kutch <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
edition = "2018"
keywords = ["int", "integer", "precision", "arbitrary"]
repository = "https://github.com/robbepop/apint"
documentation = "https://docs.rs/apint"
description = """Arbitrary precision integers library."""
categories = ["data-structures"]
[dependencies]
smallvec = "1.6.0"
rand = { version = "0.8", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, optional = true, features = ["derive"] }
[dev-dependencies]
serde_test = "1.0"
itertools = "0.10"
rand_xorshift = "0.3"
[features]
default = [
"rand_support",
"serde_support",
"std",
]
# Enable support for features that require Rust std library.
#
# This must be disabled for `no_std` environments.
std = [
"rand/std",
"serde/std",
"rand/std",
"rand/std_rng",
]
# Enable `rand` crate support.
rand_support = [
"rand",
"rand/small_rng",
"rand/getrandom",
]
# Enable `serde` serialization and deserialization support.
serde_support = ["serde"]
# Enable fuzz testing.
dev-fuzz = []
[badges]
travis-ci = { repository = "Robbepop/apint" }
appveyor = { repository = "Robbepop/apint", branch = "master", service = "github" }