Files
desubot/Cargo.toml

36 lines
873 B
TOML
Raw Normal View History

2020-11-28 17:31:08 +03:00
[package]
name = "desubot"
version = "0.1.0"
authors = ["AB <ab@hexor.ru>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytes = "0.5"
tokio = { version = "0.2", features = ["full"]}
tracing = "0.1.9"
tracing-futures = "0.2"
multipart = { version = "0.16", default-features = false, features = ["client"] }
telegram-bot = "0.8.0"
hyper = "0.13"
hyper-tls = { version = "0.4", optional = true }
futures = "0.3"
hyper-rustls = { version = "0.19", optional = true }
rusqlite = { version = "0.24.2", features = ["bundled"]}
2020-11-29 00:26:00 +03:00
html-escape = "0.2"
regex = "1"
2020-12-05 15:57:11 +03:00
reqwest = "0.10.9"
uuid = { version = "0.8", features = ["v4"] }
sha1 = "*"
env_logger = "0.7"
log = { version = "^0.4.5", features = ["std"] }
2020-12-06 23:55:09 +03:00
subprocess = "0.2.6"
2020-12-08 12:31:21 +03:00
serde_json = "1.0"
markov = "1.1.0"
rand = "0.7.3"
mystem = "0.2"