feat: add ci

This commit is contained in:
2023-03-07 23:20:06 +01:00
parent f56f8c6818
commit 2053220d01
10 changed files with 1092 additions and 71 deletions

View File

@@ -1,5 +1,5 @@
[workspace]
members = [".", "crates/services", "crates/domain", "crates/biteme"]
members = [".", "crates/services", "crates/domain", "crates/biteme", "ci"]
[workspace.dependencies]
domain = { path = "crates/domain" }
@@ -35,6 +35,8 @@ tower = { version = "0.4.13", optional = true }
tower-http = { version = "0.3.4", features = ["fs"], optional = true }
tokio = { version = "1", features = ["time"], optional = true }
wasm-bindgen = "0.2"
tracing-subscriber = { version = "0.3.16", optional = true }
tracing = { version = "0.1.37", features = ["log"], optional = true }
serde = { workspace = true }
chrono = { workspace = true }
@@ -55,6 +57,8 @@ ssr = [
"leptos_router/ssr",
"dep:leptos_axum",
"dep:services",
"dep:tracing-subscriber",
"dep:tracing",
]
[package.metadata.leptos]