add initial crates and apps
This commit is contained in:
parent
5c87ba3519
commit
1ca300098f
113 changed files with 28169 additions and 0 deletions
20
crates/chattyness-db/Cargo.toml
Normal file
20
crates/chattyness-db/Cargo.toml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
[package]
|
||||
name = "chattyness-db"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
|
||||
[dependencies]
|
||||
chattyness-error = { workspace = true, optional = true }
|
||||
chattyness-shared = { workspace = true, optional = true }
|
||||
serde.workspace = true
|
||||
uuid.workspace = true
|
||||
chrono.workspace = true
|
||||
|
||||
# SSR-only dependencies
|
||||
sqlx = { workspace = true, optional = true }
|
||||
argon2 = { workspace = true, optional = true }
|
||||
rand = { workspace = true, optional = true }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
ssr = ["sqlx", "argon2", "rand", "chattyness-error/ssr", "dep:chattyness-error", "dep:chattyness-shared"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue