32 lines
882 B
TOML
32 lines
882 B
TOML
[package]
|
|
name = "todo-baggins"
|
|
version = "0.1.0"
|
|
authors = ["Matouš Volf <66163112+matous-volf@users.noreply.github.com>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.38", features = ["serde", "unstable-locales"] }
|
|
diesel = { version = "2.2.2", features = ["chrono", "postgres", "postgres_backend", "serde_json"] }
|
|
|
|
dioxus = { version = "0.5", features = ["fullstack", "router"] }
|
|
|
|
# Debug
|
|
dioxus-logger = "0.5.1"
|
|
dotenvy = "0.15.7"
|
|
serde = "1.0.208"
|
|
validator = { version = "0.18.1", features = ["derive"] }
|
|
serde_json = "1.0.125"
|
|
tracing = "0.1.40"
|
|
tracing-wasm = "0.2.1"
|
|
serde_with = { version = "3.9.0", features = ["chrono_0_4"] }
|
|
async-std = "1.12.0"
|
|
dioxus-query = "0.5.1"
|
|
time = "0.3.36"
|
|
|
|
[features]
|
|
default = []
|
|
server = ["dioxus/axum"]
|
|
web = ["dioxus/web"]
|