-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (63 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
66 lines (63 loc) · 1.54 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[workspace]
members = [
"src/file-explorer-ui",
"src/http-server",
"test",
]
default-members = ["src/http-server"]
resolver = "1"
[workspace.package]
authors = ["Leo Borai <estebanborai@gmail.com>"]
categories = ["web-programming", "web-programming::http-server"]
description = "Simple and configurable command-line HTTP server"
documentation = "https://http-server-rs.github.io"
edition = "2024"
include = ["/ui", "/src/"]
keywords = ["configurable", "http", "server", "serve", "static"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/http-server-rs/http-server"
readme = "./README.md"
version = "1.0.0-pre.e025b58"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1.83"
async-stream = "0.3"
bytes = "1.7.1"
chrono = "0.4.38"
clap = "4.5.20"
dirs = "5.0.1"
futures = "0.3.31"
gloo = "0.11.0"
gloo-file = "0.3.0"
handlebars = "6.3.2"
humansize = "2.1.3"
http = "1.1.0"
http-body-util = "0.1"
hyper = "1.4"
hyper-util = "0.1.9"
leptos = "0.6"
leptos_meta = "0.6"
leptos_router = "0.6"
leptos-use = "0.10"
libloading = "0.8.5"
local-ip-address = "0.6.3"
mime_guess = "2.0.5"
multer = "3.1.0"
percent-encoding = "2.3.1"
reqwest = "0.12.8"
rust-embed = "8.9.0"
rustc_version = "0.4.1"
serde = "1.0.210"
serde_json = "1.0.128"
tokio = "1.40"
tokio-util = "0.7.12"
toml = "0.8.19"
tower = "0.5.1"
tower-http = "0.6.1"
tower-layer = "0.3.3"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
wait-on = "0.0.14"
web-sys = "0.3.72"
xprocess = "0.0.4"