add umbrella crate

This commit is contained in:
Aleksandr 2025-09-20 22:55:40 +03:00
parent d171fc723b
commit fe04530f84
17 changed files with 247 additions and 5 deletions

17
viendesu/Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "viendesu"
version = "0.1.0"
edition = "2024"
[features]
default = []
tokio = ["viendesu-core/tokio"]
http-client = ["viendesu-http/client"]
http-server = ["viendesu-http/server"]
[dependencies]
viendesu-core = { workspace = true }
viendesu-http = { workspace = true }
viendesu-auth = { workspace = true }
viendesu-captcha = { workspace = true }