-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (27 loc) · 1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "do-with-in"
version = "0.1.6"
edition = "2021"
authors = ["Justin (:flaviusb) Marsh <justin.marsh@flaviusb.net>"]
description = "A template language for Rust metaprogramming using partial staging."
license = "GPL-3.0-only"
readme = "README.md"
#license-file = "LICENSE"
homepage = "https://github.com/flaviusb/do-with-in"
repository = "https://github.com/flaviusb/do-with-in"
keywords = ["metaprogramming", "templates"]
[lib]
[features]
axo = ["dep:axohtml"]
[[example]]
name = "typed-html"
required-features = ["axo"]
[workspace]
members = ["do_with_in_base", "do_with_in_internal_macros",]
[dependencies]
quote = "1.0"
syn = { version = "2.0", features = ["full", "visit", "fold", "extra-traits", "parsing", "proc-macro"] }
proc-macro2 = "1.0"
do-with-in-base = { path = "do_with_in_base", version = "0.1.6", features = ["doc-kludge"] }
do-with-in-internal-macros = { path = "do_with_in_internal_macros", version = "0.1.6", features = ["doc-kludge"] }
axohtml = { version = "0.5", optional = true }