-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 710 Bytes
/
Cargo.toml
File metadata and controls
25 lines (21 loc) · 710 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
[package]
name = "slice_ops"
version = "1.0.7"
edition = "2021"
license = "MIT"
keywords = ["slice", "utility", "ops", "async", "operations"]
categories = ["algorithms", "asynchronous", "concurrency", "no-std::no-alloc", "rust-patterns"]
description = "A selection of useful slice operations."
repository = "https://github.com/sigurd4/slice_ops"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["alloc", "num"]
alloc = ["slice_trait/alloc"]
num = ["dep:num-complex"]
[dependencies]
moddef = "0.2.6"
slice_trait = "0.1.9"
num-complex = {version = "0.4.6", optional = true}
#option_trait = "0.1.16"
[dev-dependencies]
tokio-test = "0.4.4"