feat: worker crate, cargo-generate config, liquid templates, docker
This commit is contained in:
27
crates/bootstrap/Cargo.toml.liquid
Normal file
27
crates/bootstrap/Cargo.toml.liquid
Normal file
@@ -0,0 +1,27 @@
|
||||
[package]
|
||||
name = "bootstrap"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
name = "{{project_name}}"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
domain = { workspace = true }
|
||||
application = { workspace = true }
|
||||
adapters-auth = { workspace = true }
|
||||
presentation = { workspace = true }
|
||||
{% if database == "sqlite" %}
|
||||
adapters-sqlite = { path = "../adapters/sqlite" }
|
||||
{% endif %}
|
||||
{% if database == "postgres" %}
|
||||
adapters-postgres = { path = "../adapters/postgres" }
|
||||
{% endif %}
|
||||
tokio = { workspace = true }
|
||||
anyhow = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
tracing-subscriber = { workspace = true }
|
||||
dotenvy = { workspace = true }
|
||||
tower-http = { workspace = true }
|
||||
axum = { workspace = true }
|
||||
Reference in New Issue
Block a user