1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/templating/yarte/Cargo.toml

21 lines
483 B
TOML
Raw Normal View History

2019-03-12 21:15:53 +01:00
[package]
2022-07-10 00:39:21 +02:00
name = "templating-yarte"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2019-03-12 21:15:53 +01:00
publish = false
2022-02-02 02:43:51 +01:00
edition = "2021"
2019-04-01 01:23:31 +02:00
2024-09-11 22:05:47 +02:00
[package.metadata.cargo-machete]
ignored = [
"yarte_helpers" # only used as build dependency
]
2019-03-12 21:15:53 +01:00
[dependencies]
actix-web.workspace = true
2023-03-14 04:11:49 +01:00
derive_more.workspace = true
env_logger.workspace = true
2023-03-14 04:11:49 +01:00
log.workspace = true
2021-03-03 17:38:53 +01:00
yarte = { version = "0.15", features = ["bytes-buf", "html-min"] }
2019-04-01 01:23:31 +02:00
2024-07-07 03:51:12 +02:00
[build-dependencies]
yarte_helpers = { version = "0.15", default-features = false, features = ["config"] }