22 lines
514 B
TOML
22 lines
514 B
TOML
[package]
|
|
name = "tlsa"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
notify = "4.0.17"
|
|
tokio = { version = "1", features = ["full"] }
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
hyper-tls = "0.5.0"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha1 = { version = "0.6", features = ["std"] }
|
|
openssl = "0.10.38"
|
|
walkdir = "2.3.2"
|
|
publicsuffix = "1.3.1"
|
|
|
|
[profile.release]
|
|
strip = true
|