[package] name = "webmention-filer" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] #webmention = { version = "0.5", features = ["receive"] } webmention = { git = "https://github.com/DanielMowitz/webmention.git", features = [ "receive" ] } native-tls = "0.2" url = { version = "2.2", features = [ "serde" ] } # working with URLs anyhow = "1" # wrapping errors rocket = "=0.5.0-rc.3" clap = { version = "4.3", features = [ "derive" ] } # for CLI tokio = "1" chrono = "0.4" async-std = "1.12" [profile.release] strip = true # Automatically strip symbols from the binary. lto = true # Enable link-time-optimizations, which might reduce dead code and provide smaller binaries. panic = "abort" # Don't include unwinding code for realease builds, panics just abort execution.