-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (35 loc) · 1.17 KB
/
Cargo.toml
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
33
34
35
36
37
38
39
40
[package]
name = "octobot"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
config = { version = "0.14.0", features = ["toml", "json", "ini", "ron", "json5", "convert-case", "async"], default-features = false } # Disable yaml to avoid errors with unmaintained yaml-rust
serde = "1.0.198"
lazy_static = "1.4.0"
diesel_migrations = "2.1.0"
tokio = { version = "1.37.0", features = ["full"] }
chrono = { version = "0.4.38", default-features = false }
serde_json = "1.0.116"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
tracing-appender = "0.2.3"
cron = "0.12.1"
graphql_client = { version = "0.14.0", features = ["reqwest"] }
reqwest = "0.11.27"
poise = "0.6.1"
anyhow = "1.0.82"
async-trait = "0.1.80"
thiserror = "1.0.59"
r2d2 = "0.8.10"
[dependencies.diesel]
version = "2.1.6"
features = ["postgres", "r2d2", "chrono", "uuid"]
[dependencies.uuid]
version = "1.8.0"
features = ["v4", "serde"]
[dev-dependencies]
cargo-husky = { version = "1.5.0", default-features = false, features = [
"user-hooks",
] }