28 lines
843 B
TOML
28 lines
843 B
TOML
[package]
|
|
name = "doubleo7"
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
|
|
# Not part of a Cargo workspace — this crate is the whole repo. Declared
|
|
# explicitly (rather than just omitting it) so that checking this repo out
|
|
# as a nested git worktree (as this project's own workflow does) can't
|
|
# accidentally pick up an ancestor directory's workspace manifest.
|
|
[workspace]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.104"
|
|
chrono = "0.4.45"
|
|
clap = { version = "4", features = ["derive"] }
|
|
futures = "0.3"
|
|
indicatif = "0.18.6"
|
|
reqwest = { version = "0.13.4", features = ["query", "json"] }
|
|
rig = "0.41.0"
|
|
schemars = "1"
|
|
scraper = "0.27"
|
|
serde = { version = "1.0.229", features = ["derive"] }
|
|
tokio = { version = "1.53.1", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1"
|