-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
92 lines (87 loc) · 2.69 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[workspace]
members = [
"cpast",
"clex",
"cpastord",
"cscrapper",
"clex_llm",
"ccode_runner",
"cpast_api"
]
resolver = "2"
[workspace.package]
authors = ["rootCircle <[email protected]>"]
edition = "2021"
license = "GPL-3.0-or-later"
repository = "https://github.com/rootCircle/cpast_mono"
homepage = "https://rootcircle.github.io/blog/project/cpast.html"
rust-version = "1.80"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true # Automatically strip symbols from the binary.
[workspace.dependencies]
actix-session = { version = "0.10.1", features = ["redis-session-rustls"] }
actix-web = "4.9.0"
actix-web-flash-messages = { version = "0.5.0", features = ["cookies"] }
anyhow = "1.0.90"
argon2 = { version = "0.5.3", features = ["std"] }
base64 = "0.22.1"
chrono = { version = "0.4.38", default-features = false, features = ["clock"] }
claims = "0.7.1"
cli-clipboard = { version = "0.4.0" }
clap = { version = "4.5.20", features = ["derive"] }
clap_complete = "4.5.33"
colored = "2.1.0"
config = { version = "0.14.0", default-features = false, features = ["yaml"] }
fake = "2.10.0"
futures = "0.3.31"
google-generative-ai-rs = "0.3.2"
log = "0.4.22"
linkify = "0.10"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
rand = "0.8.5"
regex = "1.11.0"
reqwest = { version = "0.12.8", default-features = false, features = [
"json",
"rustls-tls",
"cookies",
] }
scraper = "0.20.0"
serde = { version = "1.0.210", features = ["derive"] }
serde-aux = "4.5.0"
serde_json = "1.0.129"
serde_urlencoded = "0.7.1"
secrecy = { version = "0.10.3", features = ["serde"] }
serenity = { version = "0.12.2", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] }
shuttle-runtime = "0.48.0"
shuttle-serenity = "0.48.0"
sqlx = { version = "0.8.2", default-features = false, features = [
"runtime-tokio-rustls",
"macros",
"postgres",
"uuid",
"chrono",
"migrate",
] }
thiserror = "1.0.64"
tokio = { version = "1.40.0", features = ["full"] }
tracing = "0.1.40"
tracing-actix-web = "0.7.13"
tracing-bunyan-formatter = { version = "0.3.9" }
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["registry", "env-filter"] }
unicode-segmentation = "1.12.0"
validator = "0.18.1"
wiremock = "0.6.2"
which = "6.0.3"
utoipa = { version = "5.1.1", features = [ "actix_extras" ] }
utoipa-swagger-ui = { version = "8.0.1", features = ["actix-web", "vendored"] }
utoipa-redoc = { version = "5.0.0", features = ["actix-web"] }
utoipa-rapidoc = { version = "5.0.0", features = ["actix-web"] }
utoipa-scalar = { version = "0.2.0", features = ["actix-web"] }
uuid = { version = "1.11.0", features = ["v4", "serde", "v7"] }