-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
50 lines (44 loc) · 955 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
41
42
43
44
45
46
47
48
49
50
[package]
authors = ["u007d <[email protected]>"]
categories = []
description = "Traits unifying types based on various supported arithmetic operations."
edition = "2021"
keywords = ["arithmetic", "numeric", "traits"]
license = "MIT OR Apache-2.0"
name = "arith_traits"
readme = "README.md"
repository = "https://github.com/u007d/arith_traits"
version = "0.4.0"
[dependencies]
thiserror = "1.0.37"
static_assertions = "1.1.0"
num = { version = "0.4.0", optional = true }
[dev-dependencies]
num-traits = "0.2.15"
assert2 = "0.3.6"
[features]
default = []
xl_types = ["dep:num"]
[profile.dev]
codegen-units = 1
debug = true
debug-assertions = true
lto = false
opt-level = 0
panic = "unwind"
rpath = false
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
lto = true
opt-level = 3
panic = "unwind"
rpath = false
[profile.test]
codegen-units = 1
debug = true
debug-assertions = true
lto = false
opt-level = 0
rpath = false