-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (70 loc) · 1.83 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (70 loc) · 1.83 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
[workspace]
resolver = "2"
members = [
"crates/arc-auth-core",
"crates/arc-auth-db",
"crates/arc-auth-session",
"crates/arc-auth-admin",
"crates/arc-auth-jwt",
"crates/arc-auth-rbac",
"crates/arc-core",
"crates/arc-es-sqlite",
"crates/arc-es-postgres",
"crates/arc-es-nats",
"crates/arc-web",
"crates/arc-cli",
"crates/arc-app",
]
[workspace.package]
version = "0.8.2"
edition = "2021"
authors = ["Savio Resende <savio@savioresende.com>"]
license = "MIT"
repository = "https://github.com/lotharthesavior/arc"
[workspace.dependencies]
# Core event sourcing dependencies
uuid = { version = "1.0", features = ["v4", "serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
async-trait = "0.1"
thiserror = "1.0"
async-nats = "0.38"
# Web framework
actix-web = "4"
actix-files = "0.6.6"
actix-session = { version = "0.10.1", features = ["cookie-session"] }
actix-limitation = "0.5"
actix-web-actors = "4.3"
actix = "0.13"
actix-web-lab = "0.22"
tracing-actix-web = "0.7"
# Database
diesel = { version = "2.2.6", features = ["sqlite", "returning_clauses_for_sqlite_3_35", "r2d2"] }
diesel_migrations = "2.2.0"
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio", "tls-rustls", "postgres", "json"] }
# Async runtime
tokio = { version = "1", features = ["full"] }
futures = "0.3.31"
futures-util = "0.3.31"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
# Templating and web utilities
tera = "1.20.0"
urlencoding = "2.1.0"
# Security
jsonwebtoken = "9"
argon2 = "0.5.3"
validator = { version = "0.18", features = ["derive"] }
hmac = "0.12"
sha2 = "0.10"
# Utilities
dotenv = "0.15.0"
fs_extra = "1.3.0"
rand = "0.8"
rpassword = "7"
once_cell = "1.19"
md5 = "0.7"
chrono = "0.4"
# Dev dependencies
serial_test = "2.0"