-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (45 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
47 lines (45 loc) · 1.2 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "hyperapi"
version = "0.2.2"
authors = ["Leric Zhang <leric.zhang@gmail.com>"]
edition = "2018"
license = "MIT"
description = "An easy to use API Gateway"
homepage = "https://www.juapi.cn/"
repository = "https://github.com/juhedata/hyperapi"
keywords = ["api", "gateway"]
exclude = ['docs/*', 'ci/*', '.github/*']
[dependencies]
hyper = { version = "0.14", features = ["full"] }
log = "0.4"
tokio = { version = "1", features = ["full"] }
clap = "2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
serde_urlencoded = "0.7"
tower = { version = "0.4", features=["limit", "balance", "timeout", "load", "load-shed", "discover", "util", "steer"] }
hyper-rustls = "0.22"
tokio-rustls = "0.22"
rustls = "0.19"
rustls-native-certs = "0.5"
thiserror = "1.0"
async-tungstenite = { version = "0.13", features=["tokio-rustls"] }
url = "2"
pin-project = "1"
futures = "0.3"
futures-util = "0.3"
rand = "0.8"
base64 = "0.13"
jsonwebtoken = "7"
regex = "1.4"
prometheus = "0.12"
lazy_static = "1.4"
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-log = "0.1"
tracing-bunyan-formatter = "0.2"
tracing-appender ="0.1"
uuid = { version="0.8", features=["v4"] }
lru = "0.6"
glob = "0.3"