forked from iliekturtles/uom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
123 lines (113 loc) · 3.07 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[package]
name = "uom"
version = "0.36.0"
edition = "2018"
rust-version = "1.65.0"
authors = ["Mike Boutin <[email protected]>"]
description = "Units of measurement"
documentation = "https://docs.rs/uom"
#homepage = ""
repository = "https://github.com/iliekturtles/uom"
readme = "README.md"
keywords = ["units", "measurement", "SI", "dimensional-analysis", "no_std"]
categories = ["no-std", "science", "value-formatting"]
license = "Apache-2.0 OR MIT"
autobins = true
autoexamples = true
autotests = true
autobenches = true
[package.metadata.docs.rs]
features = [
"usize",
"u32",
"u64",
"isize",
"i32",
"i64",
"bigint",
"biguint",
"rational",
"rational32",
"rational64",
"bigrational",
"serde",
"schemars",
]
[badges]
maintenance = { status = "actively-developed" }
[workspace]
members = ["tests/feature_check", "uom-macros", "tests/edition_check"]
[dependencies]
num-traits = { version = "0.2", default-features = false }
num-rational = { version = "0.4", optional = true, default-features = false }
num-bigint = { version = "0.4", optional = true, default-features = false, features = [
"std",
] }
num-complex = { version = "0.4", optional = true, default-features = false, features = [
"std",
] }
serde = { version = "1.0", optional = true, default-features = false }
typenum = "1.13"
schemars = { version = "0.8", optional = true, default-features = false, features = [
"derive",
] }
[dev-dependencies]
approx = "0.5"
quickcheck = "1.0"
serde_json = "1.0"
static_assertions = "1.1"
[features]
default = ["autoconvert", "f32", "f64", "si", "std"]
autoconvert = []
usize = ["rational-support"]
u8 = ["rational-support"]
u16 = ["rational-support"]
u32 = ["rational-support"]
u64 = ["rational-support"]
u128 = ["rational-support"]
isize = ["rational-support"]
i8 = ["rational-support"]
i16 = ["rational-support"]
i32 = ["rational-support"]
i64 = ["rational-support"]
i128 = ["rational-support"]
bigint = ["bigint-support"]
biguint = ["bigint-support"]
rational = ["rational-support"]
rational32 = ["rational-support"]
rational64 = ["rational-support"]
bigrational = ["bigint-support"]
complex32 = ["complex-support"]
complex64 = ["complex-support"]
f32 = []
f64 = []
si = []
std = ["num-traits/std"]
serde = [
"dep:serde",
"num-rational?/serde",
"num-bigint?/serde",
"num-complex?/serde",
]
# The try-from feature is deprecated and will be removed in a future release of uom. Functionality
# previously exposed by the feature is now enabled by default.
try-from = []
# Deprecated alias for the serde feature. Will be removed in a future release of uom (v0.37.0+)
use_serde = ["serde"]
# Internal features to include appropriate num-* crates.
rational-support = ["num-rational"]
bigint-support = ["num-bigint", "num-rational/num-bigint-std"]
complex-support = ["num-complex"]
schemars = ["dep:schemars"]
[[example]]
name = "base"
required-features = ["autoconvert", "f32", "si"]
[[example]]
name = "mks"
required-features = ["f32"]
[[example]]
name = "si"
required-features = ["f32", "si"]
[[example]]
name = "unit"
required-features = ["f32", "si"]