-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
32 lines (28 loc) · 810 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 = "microserver"
description = "Simple ad-hoc server with SPA support based on Warp! Excellent for testing React, Angular, Vue apps and the like."
version = "0.2.1"
authors = ["Roberto Huertas <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/robertohuertasm/microserver"
readme = "README.md"
keywords = ["server", "spa", "simple", "http-server", "cli"]
categories = ["web-programming::http-server", "network-programming"]
rust-version = "1.59.0"
exclude = [
"index.html",
"run.sh",
]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
warp = "0.3"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
clap = "3"
console = "0.15"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true