21 lines
464 B
TOML
21 lines
464 B
TOML
[package]
|
|
name = "mintee"
|
|
version = "0.0.1"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "frontend"
|
|
path = "src/frontend.rs"
|
|
|
|
[[bin]]
|
|
name = "test_render"
|
|
path = "src/test-render.rs"
|
|
|
|
[dependencies]
|
|
git2 = { version = "0.20.2", default-features = false }
|
|
serde = { version = "1.0.219", default-features = false, features = ["derive"] }
|
|
#inkjet = "0.11.1"
|
|
#markdown = "1.0.0"
|
|
tera = { version = "1.20.0", default-features = false, features = ["builtins"] }
|
|
httparse = "1.10.1"
|