-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (30 loc) · 833 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
[package]
name = "Neo"
description = "A Http Web Server For Serving a Single File via GET Request"
version = "0.2.1"
authors = ["Vishesh Choudhary <[email protected]>"]
repository = "https://github.com/visheshc14/Neo-Rust/"
keywords = [ "static", "http", "server", "file", "cli" ]
categories = [ "command-line-utilities", "web-programming::http-server", "filesystem" ]
readme = "README.md"
license = "MIT"
edition = "2018"
exclude = [
".gitattributes",
".gitignore",
".dockerignore",
"releases/*",
"infra/*",
]
[dependencies]
log = "0.4.0"
env_logger = "0.8.3"
structopt = "0.3"
tokio = { version = "1", features = [ "full" ] }
hyper = { version = "0.14.7", features = [ "full" ] }
hyper-rustls = "0.22.1"
async-stream = "0.3.1"
rustls = "0.19.1"
rustls-pemfile = "0.2.1"
tokio-rustls = "0.22.0"
futures-util = "0.3.14"