forked from semiwaker/TTGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 1023 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
37
38
[workspace]
[workspace.package]
authors = ["Zizhang Luo <[email protected]>"]
edition = "2021"
description = "Typed/Transactional Graph container"
readme = "README.md"
repository = "https://github.com/semiwaker/TTGraph"
license = "MIT OR Apache-2.0"
keywords = ["graph", "transaction", "typed", "data_structure"]
categories = ["data-structures"]
[package]
name = "ttgraph"
version = "0.4.2"
authors.workspace = true
edition.workspace = true
description.workspace = true
readme.workspace = true
repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
[dependencies]
serde = { version = "1.0.198", features = ["derive"] }
visible = "0.0.1"
uuid = { version = "1.8.0", features = ["v4", "fast-rng", "serde"] }
ttgraph_macros = { path = "ttgraph_macros", version = "^0.4.1" }
serde_json = "1.0.116"
ordermap = { version = "0.5.3", features = ["serde"] }
indexmap = { version = "2.6.0", features = ["serde"] }
paste = "1.0.15"
[features]
default = ["debug"]
debug = []