-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (23 loc) · 740 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (23 loc) · 740 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
[package]
name = "vecrem"
description = "Cursor-like structure for fast iterative removing of elements from a vec"
version = "0.1.0"
authors = ["Waffle <waffle.lapkin@gmail.com>"]
edition = "2018"
license-file = "LICENSE"
repository = "https://github.com/WaffleLapkin/vecrem/"
homepage = "https://github.com/WaffleLapkin/vecrem/"
documentation = "https://docs.rs/vecrem/"
readme = "README.md"
keywords = ["no_std", "vec", "vector", "drain", "remove"]
categories = ["no-std"]
exclude = [
".github/*",
"netlify.toml",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[features]
[package.metadata."docs.rs"]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]