-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (55 loc) · 1.52 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
[package]
name = "orchestrator"
version = "0.2.0"
edition = "2021"
description = "Asynchronous job orchestrator for managing and routing payloads between services and computing resources with quota tracking"
authors = ["Rodrigo V. Honorato <[email protected]>"]
license = "MIT"
repository = "https://github.com/yourusername/orchestrator"
keywords = [
"async",
"job-scheduler",
"scientific-computing",
"resource-management",
"queue",
]
categories = ["asynchronous", "science", "web-programming"]
readme = "README.md"
[dependencies]
anyhow = "1.0"
axum = { version = "0.8", features = ["multipart"] }
base64 = "0.22"
bytes = "1.10"
futures = "0.3"
http = "1.2"
hyper = { version = "1.5", features = ["full"] }
mockall = "0.13"
mockito = "1.6"
reqwest = { version = "0.12.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
sqlx = { version = "0.8", features = [
"runtime-tokio-rustls",
"any",
"sqlite",
"macros",
] }
tempfile = "3.15"
thiserror = "2.0"
tokio = { version = "1.43", features = [
"full",
"test-util",
"macros",
"rt-multi-thread",
] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["io"] }
tokio_schedule = "0.3"
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
utoipa = "5.3"
utoipa-swagger-ui = { version = "9.0", features = ["axum"] }
uuid = { version = "1.12", features = ["v4", "serde"] }