-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (37 loc) · 1.19 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 = "similarium"
description = "A slack bot to play Similarium together"
homepage = "https://similarium.dev"
authors = ["Axel <[email protected]>"]
version = "0.8.1"
edition = "2021"
readme = "README.md"
license = "MIT"
repository = "https://github.com/ikornaselur/similarium-rs"
[dependencies]
actix-web = "4"
async-openai = "0.23.3"
chrono = { version = "0.4.38", features = ["serde"] }
dotenvy = "0.15"
env_logger = "0.11"
fang = { version = "0.10.4", default-features=false, features = ["asynk", "derive-error"] }
log = "0.4"
num-format = "0.4.4"
phf = { version = "0.11.2", features = ["macros"] }
rand = "0.8"
rand_pcg = "0.3.1"
rand_seeder = "0.2.3"
reqwest = { version = "0.12.5", default-features=false, features = ["json", "trust-dns", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "0.7.1"
sha2 = "0.10"
sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls", "uuid", "chrono"] }
tokio = { version = "1.37.0", default-features = false, features = ["sync"] }
uuid = { version = "1.8", features = ["serde", "v4"] }
[profile.release]
lto = true
strip = true
[dev-dependencies]
mockall = "0.12.1"
mockito = "1.2.0"