aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2022-08-11 03:25:18 +0000
committerSven-Hendrik Haase <svenstaro@gmail.com>2022-08-11 03:25:48 +0000
commit9c030d2f882d18ee66bd5aaeef3416bd9e7bf5ce (patch)
treed693a63fa480302553934d76a5f23097d6ae7b25 /Cargo.toml
parentRemove duplicate entries from .gitignore (diff)
downloadminiserve-9c030d2f882d18ee66bd5aaeef3416bd9e7bf5ce.tar.gz
miniserve-9c030d2f882d18ee66bd5aaeef3416bd9e7bf5ce.zip
Run cargo sort
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml60
1 files changed, 30 insertions, 30 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 4cc66f1..6037d87 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,50 +11,50 @@ categories = ["command-line-utilities", "network-programming", "web-programming:
edition = "2021"
[profile.release]
+codegen-units = 1
lto = true
opt-level = 'z'
-codegen-units = 1
panic = 'abort'
[dependencies]
-actix-web = "4"
actix-files = "0.6"
actix-multipart = "0.4"
+actix-web = "4"
actix-web-httpauth = "0.8"
-maud = "0.23"
-yansi = "0.5"
-simplelog = "0.12"
-percent-encoding = "2"
-port_check = "0.1"
-bytesize = "1"
-nanoid = "0.4"
alphanumeric-sort = "1"
+anyhow = "1"
+atty = "0.2"
+bytesize = "1"
+chrono = "0.4"
+chrono-humanize = "0.2"
clap = { version = "3.2", features = ["derive", "cargo", "wrap_help"] }
clap_complete = "3.2.3"
clap_mangen = "0.1"
-chrono = "0.4"
-chrono-humanize = "0.2"
-serde = { version = "1", features = ["derive"] }
-tar = "0.4"
futures = "0.3"
+get_if_addrs = "0.5"
+hex = "0.4"
+http = "0.2"
+httparse = "1"
libflate = "1"
-thiserror = "1"
-anyhow = "1"
log = "0.4"
-strum = "0.24"
-strum_macros = "0.24"
-sha2 = "0.10"
-hex = "0.4"
-zip = { version = "0.6.2", default-features = false }
-qrcodegen = "1"
+maud = "0.23"
mime = "0.3"
-httparse = "1"
-http = "0.2"
-atty = "0.2"
+nanoid = "0.4"
+percent-encoding = "2"
+port_check = "0.1"
+qrcodegen = "1"
rustls = { version = "0.20", optional = true }
rustls-pemfile = { version = "1.0", optional = true }
+serde = { version = "1", features = ["derive"] }
+sha2 = "0.10"
+simplelog = "0.12"
socket2 = "0.4"
-get_if_addrs = "0.5"
+strum = "0.24"
+strum_macros = "0.24"
+tar = "0.4"
+thiserror = "1"
+yansi = "0.5"
+zip = { version = "0.6.2", default-features = false }
[features]
default = ["tls"]
@@ -66,14 +66,14 @@ tls = ["rustls", "rustls-pemfile", "actix-web/rustls"]
[dev-dependencies]
assert_cmd = "2"
-reqwest = { version = "0.11", features = ["blocking", "multipart", "rustls-tls"], default-features = false }
assert_fs = "1"
-select = "0.5"
-rstest = "0.15"
-regex = "1"
+predicates = "2"
pretty_assertions = "1.2"
+regex = "1"
+reqwest = { version = "0.11", features = ["blocking", "multipart", "rustls-tls"], default-features = false }
+rstest = "0.15"
+select = "0.5"
url = "2"
-predicates = "2"
[build-dependencies]
grass = "0.11"