-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 914 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
[package]
name = "baa"
version = "0.16.6"
edition = "2021"
authors = ["Kevin Laeufer <[email protected]>"]
description = "BitVector and Array Arithmetic"
repository = "https://github.com/ekiwi/baa"
license = "BSD-3-Clause"
include = ["Cargo.toml", "LICENSE", "src/", "Readme.md", "tests/"]
keywords = ["bitvector", "array", "arithmetic"]
readme = "Readme.md"
# we require the `div_ceil` method on integers
rust-version = "1.73.0"
[dependencies]
# optional dependencies for crate interop
fraction = { version = "0.15", optional = true }
num-bigint = { version = "0.4", optional = true }
rand = { version = "0.8.5", optional = true, features = ["small_rng"] }
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
proptest = "1.4.0"
num-bigint = "0.4"
[features]
default = []
bigint = ["dep:num-bigint"]
serde1 = ["dep:serde"]
fraction1 = ["dep:fraction"]
rand1 = ["dep:rand"]