iso7010-a-day/Cargo.toml

30 lines
658 B
TOML
Raw Normal View History

2021-10-24 13:36:13 +01:00
[package]
name = "iso7010_a_day"
description = "A silly twitter bot"
2022-09-13 19:14:23 +01:00
version = "0.2.0"
edition = "2021"
2021-10-24 13:36:13 +01:00
[dependencies]
reqwest = { version = "0.11", features = ["json", "multipart"]}
2021-10-24 13:36:13 +01:00
serde_json = "*"
serde = { version = "1", features = ["derive"] }
2021-10-24 13:36:13 +01:00
scraper = "*"
rand = "*"
resvg = "*"
oauth1 = "*"
clap = { version = "*", features = ["derive"] }
2021-10-24 13:36:13 +01:00
webbrowser = "*"
itertools = "*"
tracing = "0.1.36"
tracing-subscriber = "0.3.15"
regex = "1.6.0"
image = "0.24.3"
viuer = "0.6.1"
url = { version = "2.3.1", features = ["serde"] }
megalodon = { git = "https://github.com/wlcx/megalodon-rs.git" }
tokio = "*"
futures-util = "*"
2021-10-24 13:36:13 +01:00
[build-dependencies]
toml = "*"