-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 865 Bytes
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 865 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
33
34
35
36
37
38
[package]
name = "evaluate"
version = "0.1.6"
edition = "2024"
[dependencies]
actix-web = "4.12.1"
actix-rt = "2.9"
env_logger = "0.11.8"
reqwest = { version = "0.12.23", features = ["json"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
thiserror = "2.0.17"
tokio = { version = "1.47.1", features = ["full"] }
toml = "0.9.8"
uuid = { version = "1.6", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
log = "0.4"
actix-files = "0.6.8"
actix-cors = "0.7.1"
sqlx = { version = "0.8.6", features = ["runtime-tokio-native-tls", "sqlite"] }
dirs = "5.0"
rust-embed = "8.7.2"
mime_guess = "2.0.5"
futures = "0.3.31"
regex = "1.12.2"
async-trait = "0.1.89"
actix-web-actors = "4.3.1"
actix = "0.13.5"
openai = "1.1.1"
dotenvy = "0.15.7"
[lints.rust]
dead_code = "allow"
[lib]
name = "evaluate"
path = "src/lib.rs"