-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 706 Bytes
/
Cargo.toml
File metadata and controls
25 lines (21 loc) · 706 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
[package]
name = "nonmax"
description = "Numeric types that cannot hold maximum values"
version = "0.5.5"
rust-version = "1.83.0"
authors = ["Lucien Greathouse <[email protected]>"]
edition = "2018"
documentation = "https://docs.rs/nonmax"
homepage = "https://github.com/LPGhatguy/nonmax"
repository = "https://github.com/LPGhatguy/nonmax"
readme = "README.md"
keywords = ["nonmax", "non-max", "nonzero", "non-zero"]
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["std"]
std = []
[dependencies]
serde = { version = "1.0", default-features = false, optional = true }
[dev-dependencies]
bincode = "1.3"