workspace = { members = ["derived-cms-derive"] } [package] name = "derived-cms" version = "0.3.1" authors = ["Valentin Leistner "] description = "Generate a CMS, complete with admin interface, headless API and database interface from Rust type definitions. Works in cunjunction with serde and ormlite and uses axum as a web server." edition = "2021" license = "MPL-2.0" keywords = ["framework", "cms", "web"] repository = "https://github.com/nitn3lav/derived-cms" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] accept-language = "3.1.0" axum = { version = "0.7.7", features = ["multipart"] } cfg-if = "1.0.0" chrono = { version = "0.4.38", features = ["serde"] } convert_case = "0.6.0" derive_more = { version = "1.0.0", features = ["debug", "deref", "deref_mut", "display", "from", "from_str", "into"] } derived-cms-derive = { version = "0.3.0", path = "derived-cms-derive" } format-sql-query = "0.4.0" generic-array = "1.1.0" i18n-embed = { version = "0.15", features = ["fluent-system"] } i18n-embed-fl = "0.9.2" include_dir = "0.7.4" maud = { version = "0.26.0", features = ["axum"] } mime_guess = "2.0.5" ormlite = { version = "0.22", features = ["uuid", "chrono", "json"] } regex = "1.11.1" rust-embed = "8.5.0" serde = { version = "1.0.213", features = ["derive"] } serde_json = "1.0.132" serde_qs = { version = "0.13.0", features = ["axum"] } sqlmo = "0.22.6" sqlx = "0.8.2" sqlx-core = "0.8.2" thiserror = "1.0.65" tokio = { version = "1.41.0", features = ["fs"] } tower-http = { version = "0.6.1", features = ["fs"] } tracing = "0.1.40" ts-rs = { version = "10.0.0", features = ["chrono-impl", "uuid-impl"] } unic-langid = "0.9.5" urlencoding = "2.1.3" uuid = { version = "1.11.0", features = ["v4", "serde"] } [dev-dependencies] serde_with = "3.11.0" tokio = { version = "1.41.0", features = ["full"] } [package.metadata.docs.rs] features = ["sqlite", "json"] [features] json = ["ormlite/json"] sqlite = ["ormlite/sqlite"] postgres = ["ormlite/postgres"] [build-dependencies] walkdir = "2.5.0"