-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 1.13 KB
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
39
40
[package]
name = "korun"
version = "0.1.0"
edition = "2021"
description = "Local developer process runner"
license = "MIT OR Apache-2.0"
repository = "https://github.com/wkoszek/korun"
[[bin]]
name = "korun"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
axum = { version = "0.7", features = ["macros"] }
reqwest = { version = "0.12", features = ["json", "stream", "blocking"] }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
notify-debouncer-mini = "0.4"
nix = { version = "0.29", features = ["process", "signal"] }
libc = "0.2"
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.5", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
thiserror = "1"
tokio-stream = { version = "0.1", features = ["sync"] }
futures = "0.3"
[dev-dependencies]
tempfile = "3"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"