-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (64 loc) · 1.84 KB
/
Copy pathCargo.toml
File metadata and controls
81 lines (64 loc) · 1.84 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
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
[workspace]
resolver = "2"
members = [
"crates/loom_core",
"crates/loom_api",
"crates/loom_queue",
"crates/loom_print",
"crates/loom_cli",
"crates/loom_tests",
]
[workspace.package]
edition = "2021"
rust-version = "1.75"
license = "AGPL-3.0"
[workspace.dependencies]
# Async
tokio = { version = "1", features = ["full"] }
# Web framework
axum = { version = "0.7", features = ["ws", "multipart"] }
axum-extra = { version = "0.9", features = ["cookie", "typed-header"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace", "fs"] }
# Database
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-rustls", "postgres", "sqlite", "json", "chrono", "uuid"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Scripting
rhai = { version = "1", features = ["sync", "serde"] }
# WASM
wasmtime = "27"
# Templating
minijinja = { version = "2", features = ["loader"] }
# Error handling
thiserror = "2"
anyhow = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# CLI
clap = { version = "4", features = ["derive"] }
# Redis
fred = { version = "9", features = ["subscriber-client"] }
# Email
lettre = { version = "0.11", default-features = false, features = ["tokio1-rustls-tls", "builder", "hostname"] }
# REPL
rustyline = "15"
# Utilities
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4", "serde"] }
rand = "0.8"
sha2 = "0.10"
regex = "1"
async-trait = "0.1"
futures-util = "0.3"
notify = { version = "7", features = ["macos_fsevent"] }
# HTTP body utilities (for tests)
http-body-util = "0.1"
# Internal crates
loom_core = { path = "crates/loom_core" }
loom_api = { path = "crates/loom_api" }
loom_queue = { path = "crates/loom_queue" }
loom_print = { path = "crates/loom_print" }