feat: with initial

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-07-01 23:43:39 +02:00
commit 75bf2e0c71
14 changed files with 2135 additions and 0 deletions

25
crates/bearing/Cargo.toml Normal file
View File

@@ -0,0 +1,25 @@
[package]
name = "bearing"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
clap.workspace = true
dotenv.workspace = true
axum.workspace = true
serde.workspace = true
sqlx = { version = "0.6", features = [
"runtime-tokio-rustls",
"postgres",
"migrate",
"uuid",
"offline",
"time",
"chrono",
] }
chrono = { version = "0.4", features = ["serde"] }