-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
28 lines (25 loc) · 819 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
[package]
name = "live-server"
version = "0.9.1"
edition = "2021"
authors = ["Lomirus"]
description = "Launch a local network server with live reload feature for static pages."
homepage = "https://github.com/lomirus/live-server"
repository = "https://github.com/lomirus/live-server"
license = "MIT"
keywords = ["live", "server", "web", "reload"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
notify = "8.0.0"
clap = { version = "4.5.26", features = ["derive"] }
local-ip-address = "0.6.3"
log = "0.4.25"
env_logger = "0.10.2"
notify-debouncer-full = "0.5.0"
tokio = { version = "1.43.0", features = ["full"] }
axum = { version = "0.7.6", features = ["ws"]}
futures = "0.3.31"
mime_guess = "2.0.5"
open = "5.3.2"
[dev-dependencies]
reqwest = "0.12.4"