-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
28 lines (26 loc) · 901 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 = "warp-cors"
version = "0.3.0"
authors = ["Jason Liquorish"]
description = "warp-cors is a proxy server which enables CORS for the proxied request"
documentation = "https://github.com/Bassetts/warp-cors"
homepage = "https://github.com/Bassetts/warp-cors"
repository = "https://github.com/Bassetts/warp-cors"
readme = "README.md"
keywords = ["cors", "proxy"]
categories = ["command-line-utilities", "web-programming"]
license = "MIT"
edition = "2021"
[dependencies]
clap = { version = "2.34", default-features = false }
futures-util = "0.3"
hyper-rustls = "0.23"
log = "0.4"
pretty_env_logger = "0.4"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "stream"] }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.15", features = ["macros", "rt-multi-thread", "signal"] }
url = "2.2"
warp = "0.3"
[profile.release]
strip = true