20 lines
593 B
TOML
20 lines
593 B
TOML
|
[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"
|
||
|
|