-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (25 loc) · 741 Bytes
/
Cargo.toml
File metadata and controls
32 lines (25 loc) · 741 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
30
31
32
[package]
name = "generand"
version = "1.0.1"
edition = "2021"
authors = ["Baptiste Canton <bat@sbz.fr>"]
license = "MIT OR Apache-2.0"
description = "generate random sequences from your string/vec/iterator symbols."
readme = "README.md"
repository = "https://github.com/batmac/generand"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8.5"
clap = { version = "3.2.25", features = ["derive"], optional = true }
terminal_size = { version = "0.4.0", optional = true }
[features]
default = []
bin = ["clap", "terminal_size"]
[[bin]]
name = "generand"
required-features = ["bin"]
[dev-dependencies]
criterion = "0.8.0"
[[bench]]
name = "benchmark"
harness = false