-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 766 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 766 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
[workspace]
members = [
"benchmark",
"xtask",
]
[package]
name = "fast-float-to-integer"
version = "0.1.0"
authors = [ "Valentin Kettner <vakevk@gmail.com>" ]
edition = "2021"
rust-version = "1.71"
description = "Convert floating point values to integer types faster than the standard `as` operator."
repository = "https://github.com/e00E/fast-float-to-integer"
license = "MPL-2.0"
keywords = [ "float", "floating", "integer", "conversion", "convert" ]
include = [ "/src" ]
[dependencies]
cfg-if = "1.0"
[dev-dependencies]
float_next_after = "1.0"
[features]
# This feature is for internal use. It ensures cargo-show-asm can get the assembly.
show-asm = [ ]
# This feature is for internal use. It disables all target specific code.
force-default = [ ]