-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 892 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "crabberbot"
version = "1.0.0"
edition = "2024"
authors = ["enucatl <1423701+Enucatl@users.noreply.github.com>"]
homepage = "https://github.com/Enucatl/crabberbot"
repository = "https://github.com/Enucatl/crabberbot"
[dependencies]
async-trait = "0.1"
dashmap = "6.1.0"
dotenvy = "0.15"
google-cloud-auth = "1.0.1"
glob = "0.3"
http = "1.3.1"
indoc = "2"
log = "0.4"
pretty_env_logger = "0.5"
reqwest = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
teloxide = { version = "0.17", features = ["macros", "webhooks", "webhooks-axum"] }
thiserror = "2.0"
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "migrate"] }
chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
url = "2.5"
uuid = { version = "1", features = ["v4"] }
[dev-dependencies]
mockall = "0.13"