-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (36 loc) · 1.08 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
[package]
name = "constrained_int"
description = "Integers that are constrained within inclusive ranges."
version = "0.2.3"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/constrained_int"
repository = "https://github.com/pedromfedricci/constrained_int"
homepage = "https://github.com/pedromfedricci/constrained_int"
authors = ["Pedro de Matos Fedricci <[email protected]>"]
categories = ["no-std", "mathematics", "algorithms"]
keywords = ["no_std", "numerics"]
exclude = [".github", "ci", "Makefile.toml", "codecov.yaml"]
[workspace]
members = [".", "benches"]
[features]
# This will import `std` as a dependency.
std = []
serde = ["dep:serde"]
[dependencies]
serde = { version = "1", default-features = false, optional = true }
[dev-dependencies]
proptest = { version = "1" }
serde_test = { version = "1" }
[package.metadata.docs.rs]
all-features = true
[[test]]
name = "deserialize"
required-features = ["serde"]
[[test]]
name = "deserialize_error"
required-features = ["serde"]
[[test]]
name = "serialize"
required-features = ["serde"]