28 lines
586 B
TOML
28 lines
586 B
TOML
[package]
|
|
name = "hemx-saas-example"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "hemx-saas-example"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
axum = "0.8"
|
|
futures-util = "0.3"
|
|
hemplate = { path = "../../../hemplate/hemplate" }
|
|
hemx = { path = "../../hemx" }
|
|
hemx-axum = { path = "../../hemx-axum" }
|
|
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "time"] }
|
|
|
|
[dev-dependencies]
|
|
scraper = "0.25"
|
|
hemx-test = { path = "../../hemx-test" }
|
|
|
|
[build-dependencies]
|
|
hemx-build = { path = "../../hemx-build" }
|