-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 734 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 734 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 = "dagga"
version = "0.2.3"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["dag", "schedule", "solver"]
readme = "README.md"
documentation = "https://docs.rs/dagga"
repository = "https://github.com/schell/dagga"
categories = ["algorithms"]
description = "For scheduling directed acyclic graphs of nodes that create, read, write and consume resources."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["dot", "serde"]
dot = ["dep:dot2"]
serde = ["dep:serde"]
[dependencies]
dot2 = { version = "^1.0", optional = true }
log = "^0.4"
rustc-hash = "^1.1"
serde = { version = "1.0", optional = true, features = ["derive"] }
snafu = "^0.8"