-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (28 loc) · 1.1 KB
/
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
[package]
name = "monorail"
description = "A tool for effective polyglot, multi-project monorepo development."
license = "MIT"
homepage = "https://github.com/pnordahl/monorail"
repository = "https://github.com/pnordahl/monorail"
version = "3.6.0"
authors = ["Patrick Nordahl <[email protected]>"]
edition = "2021"
keywords = ["monorail", "monorepo", "build", "cli", "build-tool"]
resolver = "2"
[dependencies]
clap = "4.5.21"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = { version = "1.0.133", features = ["std"] }
trie-rs = "0.4.2"
tokio = { version = "1.41.1", features = ["net", "fs", "io-std", "io-util", "process", "rt", "macros", "rt-multi-thread", "sync"] }
tokio-util = { version = "0.7.12" }
tokio-stream = "0.1.16"
sha2 = "0.10.8"
zstd = "0.13.2"
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-subscriber = { version = "0.3.18", features = ["time", "fmt", "std", "registry", "json", "env-filter"] }
once_cell = "1.20.2"
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "now", "std"] }
rayon = "1.10.0"
[dev-dependencies]
tempfile = "3.14.0"