-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 839 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 839 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
26
[package]
name = "devloop"
version = "0.8.0"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
axum = { version = "0.8.6", features = ["json", "tokio", "http1"] }
clap = { version = "4.5.39", features = ["derive"] }
globset = "0.4.16"
notify = "8.0.0"
pulldown-cmark = "0.13.0"
rand = "0.9.2"
regex = "1.11.1"
reqwest = { version = "0.12.15", default-features = false, features = ["http2", "json", "rustls-tls"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
tokio = { version = "1.45.1", features = ["io-std", "macros", "process", "rt-multi-thread", "signal", "time"] }
tokio-stream = { version = "0.1.17", features = ["sync"] }
toml = "0.8.22"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }
unicode-width = "0.2"
[dev-dependencies]
tempfile = "3.20.0"