-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1 KB
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 1 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
[package]
name = "servile-cli"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
description = "Static file server with live-reload"
license = "MIT"
repository = "https://github.com/CodeEnPlace/servile"
authors = ["Freddie Ridell <contact@freddieridell.com>"]
keywords = ["http", "server", "static", "live-reload", "cli"]
categories = ["command-line-utilities", "web-programming::http-server"]
[[bin]]
name = "servile"
path = "src/main.rs"
[lib]
name = "servile_cli"
path = "src/lib.rs"
[dependencies]
axum = "0.8"
clap = { version = "4", features = ["derive"] }
http-body-util = "0.1"
notify = "7"
notify-debouncer-full = "0.4"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "sync", "time", "signal"] }
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6", features = ["fs"] }
tower-service = "0.3"
tracing = "0.1"
tracing-subscriber = "0.3"
[dev-dependencies]
reqwest = { version = "0.12", features = ["rustls-tls"], default-features = false }
tempfile = "3"