Files
todo-baggins/Cargo.toml
Matouš Volf f3508de4eb
Some checks failed
conventional pull request title check / conventional pull request title check (pull_request) Successful in 4s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 11s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 9s
GitLeaks check / GitLeaks check (pull_request) Successful in 11s
markdownlint check / markdownlint check (pull_request) Successful in 20s
htmlhint check / htmlhint check (pull_request) Successful in 25s
hadolint check / hadolint check (pull_request) Failing after 57s
checkov check / checkov check (pull_request) Successful in 1m20s
Prettier check / Prettier check (pull_request) Successful in 34s
ShellCheck check / ShellCheck check (pull_request) Successful in 29s
Stylelint check / Stylelint check (pull_request) Failing after 29s
yamllint check / yamllint check (pull_request) Successful in 24s
Rust check / Rust check (pull_request) Failing after 2m6s
actionlint check / actionlint check (pull_request) Successful in 7s
chore: upgrade to Dioxus 0.7
2025-12-17 19:47:28 +01:00

65 lines
1.7 KiB
TOML

[package]
name = "todo_baggins"
version = "0.1.0"
authors = ["Matouš Volf <git@matousvolf.cz>"]
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4.42", features = ["serde", "unstable-locales"] }
dioxus = { version = "0.7.2", features = ["fullstack", "router"] }
# TODO: Remove this once https://github.com/DioxusLabs/dioxus/issues/4765 is resolved.
dioxus-html = { version = "0.7.2", features = ["serialize"] }
feruca = { version = "0.11.5" }
serde = { version = "1.0.228" }
serde_json = { version = "1.0.145" }
serde_with = { version = "3.16.1", features = ["chrono_0_4"] }
tracing = "0.1.43"
unic-langid-impl = { version = "0.9.6", features = ["serde"] }
validator = { version = "0.20.0", features = ["derive"] }
diesel = { version = "2.3.4", features = [
"chrono",
"postgres",
"postgres_backend",
"serde_json",
], optional = true }
diesel_migrations = { version = "2.3.1", features = [
"postgres",
], optional = true }
rand = { version = "0.9.2", optional = true }
time = { version = "0.3.44", optional = true }
tokio = { version = "1.48.0", optional = true }
async-std = { version = "1.13.2", optional = true }
dioxus-i18n = "0.5.0"
voca_rs = "1.15.2"
load-dotenv = "0.1.2"
[features]
default = ["web"]
web = ["dioxus/web", "dep:async-std"]
mobile = ["dioxus/mobile", "dep:async-std"]
desktop = ["dioxus/desktop"]
server = [
"dioxus/server",
"dep:diesel",
"dep:diesel_migrations",
"dep:rand",
"dep:time",
"dep:tokio",
]
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"