chore add core rust project files and diesel migrations
Track required workspace crates, scripts, and historical diesel migrations so the repository contains the complete runnable backend baseline. Made-with: Cursor
This commit is contained in:
+48
@@ -0,0 +1,48 @@
|
||||
[workspace]
|
||||
members = [
|
||||
"htyws",
|
||||
"htyws_models",
|
||||
"htykc_models",
|
||||
"htykc",
|
||||
"htyts_models",
|
||||
"htyts",
|
||||
"htyproc",
|
||||
]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
version = "0.1.0"
|
||||
authors = ["阿男 <l.weinan@gmail.com>", "buddy"]
|
||||
edition = "2021"
|
||||
|
||||
[workspace.dependencies]
|
||||
htycommons = { git = "https://github.com/alchemy-studio/AuthCore.git" }
|
||||
htyuc_models = { git = "https://github.com/alchemy-studio/AuthCore.git" }
|
||||
htyuc_remote = { git = "https://github.com/alchemy-studio/AuthCore.git" }
|
||||
anyhow = "^1.0"
|
||||
axum = { version = "^0.8" }
|
||||
axum-macros = "^0.5"
|
||||
chrono = { version = "^0.4", features = ["serde"] }
|
||||
diesel = { version = "^2.2", features = ["postgres", "r2d2", "serde_json", "chrono"] }
|
||||
dotenv = "^0.15"
|
||||
jsonwebtoken = { version = "^10.2", features = ["rust_crypto"] }
|
||||
log = "^0.4"
|
||||
log4rs = "^1.2"
|
||||
rand = "^0.10"
|
||||
reqwest = { version = "^0.13", features = ["blocking", "json"] }
|
||||
ring = "^0.17"
|
||||
rust-crypto = "*"
|
||||
serde = { version = "^1.0", features = ["derive"] }
|
||||
serde_derive = "^1.0"
|
||||
serde_json = "^1.0"
|
||||
thiserror = "^2.0"
|
||||
time = { version = "^0.3", features = ["macros"] }
|
||||
tokio = { version = "^1.47", features = ["full"] }
|
||||
tower-http = { version = "^0.6", features = ["trace"] }
|
||||
tracing = { version = "^0.1" }
|
||||
tracing-appender = "^0.2"
|
||||
tracing-subscriber = { version = "^0.3", features = ["env-filter", "local-time"] }
|
||||
uuid = { version = "^1.16", features = ["serde", "v4"] }
|
||||
url = "^2.5"
|
||||
string-builder = "*"
|
||||
redis = { version = "1.1", features = ["tokio-comp", "connection-manager"] }
|
||||
Reference in New Issue
Block a user