mirror of
https://codeberg.org/likwid/likwid.git
synced 2026-02-09 21:13:09 +00:00
- Backend: Rust/Axum with PostgreSQL, plugin architecture - Frontend: Astro with polished UI - Voting methods: Approval, Ranked Choice, Schulze, STAR, Quadratic - Features: Liquid delegation, transparent moderation, structured deliberation - Documentation: User and admin guides in /docs - Deployment: Docker/Podman compose files for production and demo - Demo: Seeded data with 3 communities, 13 users, 7 proposals License: AGPLv3
31 lines
894 B
TOML
31 lines
894 B
TOML
[package]
|
|
name = "likwid"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
axum = "0.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "uuid", "chrono", "json", "migrate"] }
|
|
dotenvy = "0.15"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
uuid = { version = "1", features = ["serde", "v4"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
envy = "0.4"
|
|
async-trait = "0.1"
|
|
tower-http = { version = "0.6", features = ["cors", "trace"] }
|
|
argon2 = "0.5"
|
|
jsonwebtoken = "9"
|
|
axum-extra = { version = "0.10", features = ["typed-header"] }
|
|
thiserror = "2"
|
|
jsonschema = "0.17"
|
|
base64 = "0.21"
|
|
sha2 = "0.10"
|
|
ed25519-dalek = "2"
|
|
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
|
|
wasmtime = "19"
|
|
wasmtime-wasi = "19"
|
|
slug = "0.1"
|