init
This commit is contained in:
commit
fd80fbab7e
48 changed files with 16775 additions and 0 deletions
74
Cargo.toml
Normal file
74
Cargo.toml
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
[workspace]
|
||||
resolver = "2"
|
||||
members = [
|
||||
"crates/jupiter-api-types",
|
||||
"crates/jupiter-server",
|
||||
"crates/jupiter-db",
|
||||
"crates/jupiter-forge",
|
||||
"crates/jupiter-scheduler",
|
||||
"crates/jupiter-cache",
|
||||
"crates/jupiter-cli",
|
||||
]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[workspace.dependencies]
|
||||
# Internal crates
|
||||
jupiter-api-types = { path = "crates/jupiter-api-types" }
|
||||
jupiter-db = { path = "crates/jupiter-db" }
|
||||
jupiter-forge = { path = "crates/jupiter-forge" }
|
||||
jupiter-scheduler = { path = "crates/jupiter-scheduler" }
|
||||
jupiter-cache = { path = "crates/jupiter-cache" }
|
||||
|
||||
# Async
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
|
||||
# Web
|
||||
axum = { version = "0.8", features = ["ws", "macros"] }
|
||||
axum-extra = { version = "0.10", features = ["typed-header"] }
|
||||
tower = { version = "0.5" }
|
||||
tower-http = { version = "0.6", features = ["cors", "trace"] }
|
||||
|
||||
# Serialization
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
toml = "0.8"
|
||||
|
||||
# Database
|
||||
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "postgres", "uuid", "chrono", "json"] }
|
||||
|
||||
# Auth
|
||||
jsonwebtoken = "9"
|
||||
bcrypt = "0.16"
|
||||
uuid = { version = "1", features = ["v4", "serde"] }
|
||||
|
||||
# Crypto
|
||||
hmac = "0.12"
|
||||
sha2 = "0.10"
|
||||
hex = "0.4"
|
||||
|
||||
# HTTP client
|
||||
reqwest = { version = "0.12", features = ["json"] }
|
||||
|
||||
# Error handling
|
||||
thiserror = "2"
|
||||
anyhow = "1"
|
||||
|
||||
# Logging
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
||||
|
||||
# CLI
|
||||
clap = { version = "4", features = ["derive", "env"] }
|
||||
|
||||
# Time
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
|
||||
# Misc
|
||||
base64 = "0.22"
|
||||
futures = "0.3"
|
||||
async-trait = "0.1"
|
||||
rand = "0.8"
|
||||
Loading…
Add table
Add a link
Reference in a new issue