-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
32 lines (29 loc) · 950 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
[package]
name = "forest-server"
version = "0.2.2"
edition = "2021"
description = "A development server for ocaml-forester"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.2", features = ["tokio", "macros"] }
axum-extra = { version = "0.9.0", features = ["typed-header"] }
clap = { version = "4.4.11", features = ["derive", "cargo"] }
cli-log = "2.0.0"
futures = "0.3"
futures-util = "0.3.29"
log = "0.4"
maud = { version = "0.25.0", features = ["axum"] }
miette = "5.10.0"
pretty_env_logger = "0.4"
shlex = "1.2.0"
tokio = { version = "1", features = ["sync", "rt-multi-thread"] }
tokio-stream = { version = "0.1.14", features = ["sync"] }
tower-http = { version = "0.5.0", features = ["fs", "trace"] }
tracing = "0.1.40"
watchexec = "3.0.1"
watchexec-events = "2.0.1"
watchexec-signals = "2.0.0"
[[bin]]
name = "forest"
path = "src/main.rs"