32 lines
716 B
TOML
32 lines
716 B
TOML
[package]
|
|
name = "is-this-a-repost-telegram-bot"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.38"
|
|
clap = { version = "4.5.21", features = ["derive"] }
|
|
humansize = "2.1.3"
|
|
image = { version = "0.25.5", default-features = false, features = [
|
|
"webp",
|
|
"jpeg",
|
|
"gif",
|
|
"bmp",
|
|
"png",
|
|
] }
|
|
image_hasher = "2.0.0"
|
|
log = "0.4.22"
|
|
pretty_env_logger = "0.5.0"
|
|
rusqlite = { version = "0.32.1", features = [
|
|
"vtab",
|
|
"modern_sqlite",
|
|
"load_extension",
|
|
"bundled",
|
|
"array",
|
|
] }
|
|
sqlite-vec = "0.1.5"
|
|
teloxide = { version = "0.13.0", features = ["macros"] }
|
|
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] }
|
|
tokio-rusqlite = "0.6.0"
|
|
zerocopy = "0.8.10"
|