-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (27 loc) · 876 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
[package]
name = "random-branch"
keywords = ["pick", "choose", "match", "random"]
version = "0.1.2-alpha.0"
description = "Provides a macro to select a random branch like match"
authors = ["Cryptjar <[email protected]>"]
edition = "2018"
repository = "https://github.com/cryptjar/random-branch"
readme = "README.md"
license = "MIT OR Apache-2.0"
categories = ["algorithms", "no-std"]
[features]
# Default features
default = ["std"]
# Requires std, enables the `branch` macro
std = ["rand/std", "rand/std_rng"]
# Requires Nightly Rust, enables the doc_cfg nightly feature to mark items that
# require crate-features. Only useful for documentation.
doc_cfg = []
[dependencies.rand]
version = "0.8"
default-features = false
[dev-dependencies.rand_pcg]
version = "0.3"
# Enable all features when building docs on docs.rs
[package.metadata.docs.rs]
all-features = true