-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 888 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 888 Bytes
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
[package]
name = "torii-example-todos"
version = "0.5.2"
edition = "2021"
publish = false
[dependencies]
# torii
torii = { path = "../../torii", version = "0.5.3", features = [
"password",
"seaorm-sqlite",
] }
torii-core = { path = "../../torii-core", version = "0.5.2" }
# database - SeaORM handles the database connection
# sqlx = { version = "0.8", features = ["sqlite", "runtime-tokio-rustls"] }
# web server
askama = "0.14"
axum = { version = "0.8", features = ["macros"] }
axum-extra = { version = "0.10", features = ["cookie", "typed-header"] }
# "stdlib"
chrono = { version = "0.4.39", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.13.1", features = ["v4", "v7"] }
# async/runtime
dashmap = "6.0"
tokio = { version = "1.0", features = ["full"] }
tracing-subscriber = "0.3"
tracing.workspace = true