2021-12-06 22:08:22 +00:00
|
|
|
[package]
|
|
|
|
name = "tricot"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
authors = ["Alex Auvolat <alex@adnab.me>"]
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.28"
|
|
|
|
envy = "0.4"
|
2021-12-06 22:40:41 +00:00
|
|
|
futures = "0.3"
|
2021-12-06 22:08:22 +00:00
|
|
|
log = "0.4"
|
|
|
|
pretty_env_logger = "0.4"
|
|
|
|
regex = "1"
|
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
serde = { version = "1.0.107", features = ["derive"] }
|
|
|
|
serde_json = "1.0.53"
|
|
|
|
tokio = { version = "1.0", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] }
|
2021-12-06 22:40:41 +00:00
|
|
|
bytes = "1"
|
|
|
|
acme-micro = "0.12"
|
2021-12-07 12:50:44 +00:00
|
|
|
rustls = "0.20"
|
|
|
|
rustls-pemfile = "0.2"
|
|
|
|
chrono = { version = "0.4", features = [ "serde" ] }
|
2021-12-07 14:20:45 +00:00
|
|
|
hyper = { version = "0.14", features = [ "full" ] }
|
|
|
|
futures-util = "0.3"
|
|
|
|
tokio-rustls = "0.23"
|
|
|
|
#hyper-rustls = "0.23"
|
2021-12-07 12:50:44 +00:00
|
|
|
http = "0.2"
|
2021-12-07 14:20:45 +00:00
|
|
|
hyper-reverse-proxy = "0.4"
|
|
|
|
unicase = "2"
|
|
|
|
lazy_static = "1.4"
|
2021-12-07 16:56:15 +00:00
|
|
|
structopt = "0.3"
|
2021-12-08 10:11:22 +00:00
|
|
|
glob = "0.3"
|
2021-12-08 11:02:39 +00:00
|
|
|
rcgen = "0.8"
|