-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (27 loc) · 948 Bytes
/
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
[package]
name = "kavacoast"
version = "2.0.0-alpha.0"
authors = ["Jason <[email protected]>"]
edition = "2021"
repository = "https://github.com/Elgenzay/kavacoast"
license = "MIT-0"
[dependencies]
tokio = { version = "1.39.1", features = ["macros", "rt-multi-thread"] }
serenity = { default-features = false, features = ["client", "gateway", "model", "rustls_backend", "cache", "http", "framework", "standard_framework"], version = "0.12.2"}
serde = "1.0.204"
serde_json = "1.0.120"
chrono = "0.4.38"
surrealdb = "1.5.4"
confy = "0.6.1"
password-hash = "0.5.0"
argon2 = "0.5.3"
async-trait = "0.1.81"
rocket = { version = "0.5.1", features = ["tls", "json"] }
rand = "0.8.5"
rand_core = { version = "0.6.4", features = ["std"] }
jsonwebtoken = "9.3.0"
env_logger = "0.11.4"
log = "0.4.22"
reqwest = { version = "0.12.5", features = ["json"] }
either = { version = "1.13.0", features = ["serde"] }
strum = { version = "0.26.3", features = ["derive"] }