first
This commit is contained in:
23
Cargo.toml
Normal file
23
Cargo.toml
Normal file
@@ -0,0 +1,23 @@
|
||||
[package]
|
||||
name = "bitBeam"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
axum = "0.8"
|
||||
bytes = "1.10"
|
||||
chrono = {version = "0.4", features = ["serde"]}
|
||||
extract = "0.1"
|
||||
rand = "0.9"
|
||||
serde = {version = "1.0", features = ["derive"]}
|
||||
sqlx = { version = "0.8", features = [
|
||||
"runtime-tokio", # pick exactly one runtime
|
||||
"tls-rustls", # pick exactly one TLS backend
|
||||
"any", # for sqlx::any abstraction
|
||||
"postgres", # Postgres driver
|
||||
"sqlite", # SQLite driver
|
||||
"chrono", # (optional) chrono date/time support
|
||||
"migrate" # for embed migrations
|
||||
] }
|
||||
tokio = {version = "1.45", features = ["full"]}
|
||||
uuid = "1.16"
|
||||
Reference in New Issue
Block a user