-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
86 lines (70 loc) · 1.31 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
[package]
name = "dactyl"
version = "0.7.4"
authors = ["Blobfolio, LLC. <[email protected]>"]
edition = "2021"
rust-version = "1.70"
description = "A small library to quickly stringify integers with basic formatting."
license = "WTFPL"
repository = "https://github.com/Blobfolio/dactyl"
readme = "README.md"
keywords = [ "integer", "printing", "formatting" ]
exclude = [
".github",
".gitignore",
".righteous-sandbox.json",
"doc",
"justfile",
"release",
]
[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
[package.metadata.bashman]
name = "Dactyl"
bash-dir = "./"
man-dir = "./"
credits-dir = "./"
[dev-dependencies]
brunch = "0.6.*"
fastrand = "2"
num-format = "0.4.*"
[[bench]]
name = "fn_btoi"
harness = false
[[bench]]
name = "fn_btou"
harness = false
[[bench]]
name = "fn_htou"
harness = false
[[bench]]
name = "fn_nice_elapsed"
harness = false
[[bench]]
name = "fn_nice_float"
harness = false
[[bench]]
name = "fn_nice_percent"
harness = false
[[bench]]
name = "fn_nice_u8"
harness = false
[[bench]]
name = "fn_nice_u16"
harness = false
[[bench]]
name = "fn_nice_u32"
harness = false
[[bench]]
name = "fn_nice_u64"
harness = false
[[bench]]
name = "fn_nohash"
harness = false
[[bench]]
name = "fn_saturating_from_u8"
harness = false
[profile.bench]
lto = false
codegen-units = 1
opt-level = 3