-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 723 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 723 Bytes
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
[package]
name = "itoap"
version = "1.0.1"
authors = ["Ryohei Machida <orcinus4627@gmail.com>"]
description = "Even faster functions for printing integers with decimal format"
homepage = "https://github.com/Kogia-sima/itoap"
repository = "https://github.com/Kogia-sima/itoap"
readme = "README.md"
categories = ["value-formatting"]
license = "MIT"
edition = "2018"
exclude = ["benches/*", "bench.png", ".github/*"]
[features]
default = ["simd", "std"]
alloc = []
simd = []
std = ["alloc"]
[dev-dependencies]
itoa = "1.0.2"
rand = { version = "0.8.5", features = ["small_rng"], default-features = false }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[profile.bench]
codegen-units = 1