24 lines
640 B
TOML
24 lines
640 B
TOML
[package]
|
|
name = "pull-articles"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
git2 = { version = "0.18.1" }
|
|
clap = "4.4.18"
|
|
color-eyre = "0.6.2"
|
|
dotenv = "0.15.0"
|
|
eyre = "0.6.11"
|
|
serde = { version = "1.0.196", features = ["derive"] }
|
|
serde_json = "1.0.112"
|
|
serde_yaml = "0.9.30"
|
|
tempdir = "0.3.7"
|
|
tokio = { version = "1.35.1", features = ["full"] }
|
|
tracing = { version = "0.1.40", features = ["log"] }
|
|
tracing-subscriber = "0.3.18"
|
|
serde_toml = "0.0.1"
|
|
toml = { version = "0.8.8", features = ["preserve_order"] }
|
|
tokio-scoped = "0.2.0"
|