[package] name = "toxy" version = "0.1.1" edition = "2021" authors = ["Scott Rossillo "] keywords = ["reverse-proxy", "token-exchange"] categories = ["authentication", "network-programming", "web-programming::http-server"] description = "An Oauth2 token exchange aware reverse proxy based on hyper." license = "Apache-2.0" readme = "README.md" repository = "https://github.com/foo4u/toxy" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = "0.1.57" futures = "0.3.24" hyper = { version = "0.14.20", features = ["full"] } hyper-native-tls = "0.3.0" hyper-reverse-proxy = "0.5.1" reqwest = { version = "0.11.12", features = ["json"] } serde = { version = "1.0.137", features = ["derive"] } serde_json = "1.0.85" tokio = { version = "1.21.2", features = ["full"] } tracing = "0.1.37" tracing-subscriber = "0.3.16"