-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (53 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
56 lines (53 loc) · 1.35 KB
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
[workspace]
members = ["./src/*", "./task/*"]
default-members = ["src/cli"]
resolver = "3"
[workspace.package]
authors = ["Leo Borai <estebanborai@gmail.com>"]
version = "0.0.0-pre.44c2114"
edition = "2024"
categories = ["web-programming"]
description = "🦀🧡🧉"
documentation = "https://docs.rs/mate"
keywords = ["job", "queue", "scheduler", "wasm"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/LeoBorai/mate"
readme = "./README.md"
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1"
axum = "0.8"
bytes = "1.11"
chrono = "0.4"
clap = "4.5"
humantime = "2.3"
include_dir = "0.7"
log = "0.4"
proc-macro2 = "1.0"
reqwest = "0.13"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = "0.8.6"
syn = { version = "2.0", features = ["full", "extra-traits"] }
quote = "1.0"
tabled = "0.20"
tempfile = "3.26"
tokio = "1"
toml = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
uuid = "1.21"
wasmtime = "42.0"
wasmtime-wasi = "42.0"
wasmtime-wasi-http = "42.0"
wit-bindgen = "0.53"
wstd = "0.6"
mate-config = { path = "./src/config" }
mate-executor = { path = "./src/executor" }
mate-ipc = { path = "./src/ipc" }
mate = { path = "./src/mate" }
mate-repository = { path = "./src/repository" }
mate-scheduler = { path = "./src/scheduler" }
mate-storage = { path = "./src/storage" }
mate-task = { path = "./src/task" }