-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 869 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
[package]
name = "id-vec"
version = "0.5.7"
authors = ["johannesvollmer <[email protected]>"]
description = "Simplify Graphs in Rust. Introduces IdVec, which automatically creates Ids for each new object, reusing deleted Ids. "
repository = "https://github.com/johannesvollmer/id-vec"
readme = "README.md"
keywords = ["map", "graph", "index", "id", "vec"]
categories = ["data-structures", "memory-management", "rust-patterns"]
license = "MIT"
maintenance = { status = "passively-maintained" }
[lib]
path = "src/lib.rs"
test = true
doctest = false # TODO
bench = false
doc = true
plugin = false
proc-macro = false
# If set to false, `cargo test` will omit the `--test` flag to rustc, which
# stops it from generating a test harness. This is useful when the binary being
# built manages the test runner itself.
harness = true
[dependencies]
# num-traits = "0.2"