-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
35 lines (33 loc) · 915 Bytes
/
Cargo.toml
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
[workspace]
# This is the list of crates in the workspace, keep in order of leaf to root.
members = [
"torii-core",
"torii-migration",
"torii-storage-sqlite",
"torii-storage-postgres",
"torii-storage-seaorm",
"torii-auth-password",
"torii-auth-oauth",
"torii-auth-passkey",
"torii-auth-magic-link",
"torii",
"examples/todos",
]
resolver = "3"
[workspace.package]
edition = "2024"
repository = "https://github.com/cmackenzie1/torii-rs"
license = "MIT"
[workspace.dependencies]
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
dashmap = "6.1"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
uuid = { version = "1", features = ["v4"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "chrono", "uuid"] }