-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 886 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
[package]
name = "comfy-bounded-ints"
authors = ["Houtamelo"]
version = "0.2.1"
edition = "2021"
license = "MIT"
description = "Bounded-integer types focused on ergonomics and safety. (See README.md)"
repository = "https://github.com/Houtamelo/comfy-bounded-ints"
readme = "README.md"
keywords = ["bound", "bounded", "integer", "int", "saturating"]
categories = ["data-structures", "rust-patterns", "game-development", "mathematics"]
exclude = [".idea/*"]
[dependencies]
serde = { version = "1.0.201", features = ["derive"], optional = true }
serde_json = { version = "1.0.117", optional = true }
no-panic = { version = "0.1.30", optional = true }
[features]
default = []
serde = ["dep:serde"]
serde_json = ["dep:serde_json"]
div_assign_zero = []
no_panic = ["dep:no-panic"]
[dev-dependencies]
comfy-bounded-ints = { path = ".", features = ["serde", "serde_json", "div_assign_zero"]}