issue-bot/Cargo.toml

25 lines
722 B
TOML
Raw Permalink Normal View History

2019-09-20 12:59:13 +03:00
[package]
name = "issue-bot"
2022-09-24 17:36:47 +03:00
version = "0.3.0"
2019-09-20 12:59:13 +03:00
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
2022-09-24 15:30:31 +03:00
edition = "2021"
2019-09-20 12:59:13 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-09-24 15:30:31 +03:00
chrono = { version = "0.4.22" }
error-chain = "0.12.4"
2020-09-10 22:33:34 +03:00
log = "0.4.11"
2022-09-24 15:30:31 +03:00
reqwest = { version = "0.11", default-features = false, features = ["blocking", "native-tls", "json"] }
rusqlite = { version = "0.28", features = ["uuid", "chrono"] }
serde = { version = "1.0.101", features = ["derive"] }
serde_json = "1.0.40"
2020-09-10 22:33:34 +03:00
simplelog = "^0.8.0"
2022-09-24 15:30:31 +03:00
toml = "0.5.3"
uuid = "1.1.2"
[dependencies.melib]
git = "https://git.meli.delivery/meli/meli"
2022-09-24 15:30:31 +03:00
version = "0.7.2"
2020-09-10 22:33:34 +03:00
default-features = false
features = []