-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 584 Bytes
/
Cargo.toml
File metadata and controls
23 lines (20 loc) · 584 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "algos"
version = "0.4.0"
authors = ["GrayJack <gr41.j4ck@gmail.com>"]
description = "A collection of algorithms in Rust"
repository = "https://github.com/GrayJack/algos"
homepage = "https://crates.io/crates/algos"
documentation = "https://docs.rs/algos"
license-file = "LICENSE"
readme = "README.md"
keywords = ["algorithm", "sort", "search", "pattern", "series"]
exclude = ["/.travis.yml", "/.github/*"]
edition = "2018"
[dependencies]
const_fn = "0.4.3"
rand = "0.8.3"
num = { version="0.4.0", optional=true }
[features]
default = ["big_num"]
big_num = ["num"]