-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 932 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
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "aint"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Jack Bernard <[email protected]>"]
repository = "https://github.com/Vociferix/aint"
description = "Arbitrary width integers between 1 and 128"
homepage = "https://github.com/Vociferix/aint"
documentation = "https://docs.rs/aint"
readme = "README.md"
keywords = [
"int",
"uint",
"arbitrary",
"no_std",
"num",
]
categories = [
"embedded",
"encoding",
"mathematics",
"no-std",
"no-std::no-alloc",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", optional = true }
num-traits = { version = "0.2", optional = true }
num-integer = { version = "0.1", optional = true }
[dev-dependencies]
paste = "1.0"
[features]
default = []
serde = ["dep:serde"]
num = ["dep:num-traits", "dep:num-integer"]