-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
31 lines (28 loc) · 995 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 = "simple_proxy"
edition = "2018"
version = "1.3.4"
authors = ["Terry Raimondo <[email protected]>"]
description = "Simple proxy with middlewares, easy to customize, easy to use."
license = "Apache-2.0"
homepage = "https://github.com/terry90/rs-simple-proxy"
repository = "https://github.com/terry90/rs-simple-proxy"
[package.metadata.docs.rs]
features = ["docs"]
[features]
router = ["regex", "serde_regex"]
health = []
cors = []
docs = ["router", "health", "cors"]
[dependencies]
futures = "0.3.5"
log = "0.4.8"
chrono = { version = "0.4.11", features = ["serde"] }
regex = { version = "1.3.9", optional = true }
serde_regex = { version = "1.1.0", optional = true }
serde_json = "1.0.55"
serde_derive = "1.0.112"
serde = "1.0.112"
rand = { version = "0.8.3", features = ["small_rng"] }
hyper = { version = "0.14.5", features = ["client", "tcp", "http1", "server"] }
http = "0.2.1"