-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (34 loc) · 872 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
[package]
name = "bodo"
version = "0.1.0"
edition = "2021"
description = "A modern task runner and build tool"
license = "MIT"
repository = "https://github.com/bodo-run/bodo"
[dependencies]
clap = { version = "4.2", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] }
anyhow = "1.0"
colored = "3.0.0"
globset = "0.4"
humantime = "2.1"
walkdir = "2.3"
notify = "8"
chrono = "0.4"
terminal_size = "0.4.1"
log = "0.4"
env_logger = "0.11.6"
async-trait = "0.1.86"
validator = { version = "0.16", features = ["derive"] }
schemars = { version = "0.8", features = ["derive"] }
[dev-dependencies]
tempfile = "3.8"
[features]
default = ["tokio", "petgraph", "dialoguer", "serde_json"]
tokio = []
petgraph = []
dialoguer = []
serde_json = []