-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (50 loc) · 1.55 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
[workspace.dependencies]
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.0", features = ["serde", "v4", "v7"] }
anyhow = "1.0"
thiserror = "1.0.63"
byte-unit = "5.1.6"
futures = "0.3.31"
chrono = "0.4.39"
prost = "0.13.4"
prost-types = "0.13.4"
tonic = "0.12.3"
tonic-types = "0.12.3"
tonic-web = "0.12.3"
tonic-build = "0.12.3"
pyo3 = { version = "0.23.4", features = ["extension-module", "experimental-async"] }
pyo3-stub-gen = "0.7.0"
axum = "0.7"
http-body-util = "0.1.0"
axum-extra = { version = "0.9", features = [ "typed-header" ] }
tower = { version = "0.4", features = ["full"] }
tower-http = { version = "0.5.0", features = ["add-extension", "trace", "fs"] }
reqwest = "0.12.5"
bcrypt = "0.15"
async-session = "3.0.0"
sqlx = { version = "0.7", features = [ "mysql", "runtime-tokio", "migrate", "chrono", "uuid" ] }
jsonwebtoken = "9.3.0"
lettre = "0.11.7"
fancy-regex = "0.14.0"
aws-sdk-s3 = {version="1.68.0", features = ["behavior-version-latest"] }
aws-config = {version="1.5.13", features = ["behavior-version-latest"] }
[workspace]
members = [
"lib/jobapi",
"lib/problem_registry",
"lib/local_jobapi",
"lib/local_problem_registry",
"lib/grpc_schema",
"lib/judge_core",
"lib/backend_domain",
"lib/backend_infra",
"lib/backend_usecase",
"pylib/traopy",
"app/backend_app",
"app/judge_control_app", "lib/local_problem_registry",
]
resolver = "2"