-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (44 loc) · 1.43 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (44 loc) · 1.43 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
[workspace]
# This is the list of crates in the workspace, ordered by dependency hierarchy (leaf to root).
# Publishing order: torii-core → torii-migration → storage/auth crates → torii
members = [
# Level 1: Email functionality
"torii-mailer",
# Level 2: Core (no internal dependencies)
"torii-core",
# Level 3: Migration (depends on torii-core)
"torii-migration",
# Level 4: Storage backends (depend on torii-core and torii-migration)
"torii-storage-sqlite",
"torii-storage-postgres",
"torii-storage-seaorm",
# Level 5: Main library (depends on all above)
"torii",
# Level 5: Wrappers and helpers
"torii-axum",
# Examples (not published)
"examples/todos",
"examples/axum-example",
]
resolver = "3"
[workspace.package]
edition = "2024"
repository = "https://github.com/cmackenzie1/torii-rs"
license = "MIT"
[workspace.dependencies]
async-trait = "0.1"
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
dashmap = "6.1"
jsonwebtoken = "9.3"
rand = "0.9"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
uuid = { version = "1", features = ["v4"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "chrono", "uuid"] }
sea-orm = { version = "1.1.13", features = ["runtime-tokio-rustls", "macros", "with-chrono", "with-uuid"] }