23 lines
571 B
TOML
23 lines
571 B
TOML
[package]
|
|
name = "proxy-get-service"
|
|
version = "0.1.0"
|
|
authors = ["Hatter Jiang <jht5945@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
reqwest = { version = "0.10", features = ["stream"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
clap = "2.0"
|
|
rust_util = "0.6"
|
|
actix-http = "1.0"
|
|
actix-web = "2"
|
|
actix-rt = "1"
|
|
bytes = "0.5"
|
|
futures-core = "0.3"
|
|
linked-hash-map = "0.5"
|
|
percent-encoding = "2.1"
|