-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·95 lines (79 loc) · 2.22 KB
/
Copy pathCargo.toml
File metadata and controls
executable file
·95 lines (79 loc) · 2.22 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Copyright 2026 ExtendDB contributors
# SPDX-License-Identifier: Apache-2.0
[workspace]
resolver = "2"
members = [
"crates/core",
"crates/cache",
"crates/engine",
"crates/storage",
"crates/storage-postgres",
"crates/auth",
"crates/server",
"crates/bin",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.88"
license = "Apache-2.0"
[workspace.dependencies]
# Internal crates
extenddb-core = { path = "crates/core" }
extenddb-cache = { path = "crates/cache" }
extenddb-engine = { path = "crates/engine" }
extenddb-storage = { path = "crates/storage" }
extenddb-storage-postgres = { path = "crates/storage-postgres" }
extenddb-auth = { path = "crates/auth" }
extenddb-server = { path = "crates/server" }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Error handling
thiserror = "2"
anyhow = "1"
# Async
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
futures = "0.3"
# HTTP
axum = { version = "0.8", features = ["macros"] }
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6", features = ["compression-gzip", "cors", "set-header"] }
hyper = { version = "1" }
urlencoding = { version = "2.1" }
# Database plugin registry
inventory = "0.3"
# Caching
moka = { version = "0.12", features = ["future"] }
# Database
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid", "bigdecimal"] }
# Crypto & checksums
crc32fast = "1"
uuid = { version = "1", features = ["v4"] }
base64 = "0.22"
bigdecimal = { version = "0.4", features = ["serde"] }
bcrypt = "0.17"
aes-gcm = "0.10"
rand = "0.9"
# Time
time = { version = "0.3", features = ["serde", "formatting", "parsing"] }
# TLS
axum-server = { version = "0.8", features = ["tls-rustls"] }
rustls = { version = "0.23", features = ["aws_lc_rs"] }
rustls-pemfile = "2"
rcgen = "0.14"
# Process management
daemonize = "0.5"
libc = "0.2"
# Logging & metrics
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
syslog-tracing = "0.3"
metrics = "0.24"
# Config
clap = { version = "4", features = ["derive"] }
config = "0.14"
# Security
zeroize = { version = "1.8", features = ["derive"] }