15 lines
358 B
TOML
15 lines
358 B
TOML
[package]
|
|
name = "capbot"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = { version = "0.5.10", features = ["http2", "ws"] }
|
|
env_logger = "0.9.0"
|
|
log = "0.4.17"
|
|
regex = "1.5.6"
|
|
thiserror = "1.0.31"
|
|
tokio = { version = "1.19.2", features = ["full"] }
|