20 lines
528 B
TOML
20 lines
528 B
TOML
[package]
|
|
name = "albatross"
|
|
version = "0.2.0"
|
|
authors = ["Joey Hines <joey@ahines.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
structopt = "0.3.20"
|
|
serde = { version="1.0.116", features=["derive"] }
|
|
config = "0.9"
|
|
log = "0.4.8"
|
|
chrono = "0.4"
|
|
regex = "1.3.9"
|
|
flate2 = "1.0.14"
|
|
tar = "0.4.28"
|
|
reqwest = { version = "0.10", features = ["blocking", "json"] }
|
|
discord-hooks-rs = { git = "https://github.com/joeyahines/discord-hooks-rs" }
|