blakerain.com/macros/Cargo.toml
Blake Rain 5ef6adeb6d
Some checks failed
check / check (push) Failing after 7s
deploy / deploy-site (push) Failing after 10m23s
chore: bump dependencies and version to 2.2.0
2024-05-20 19:37:54 +01:00

34 lines
729 B
TOML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[package]
name = "macros"
version = "0.1.0"
publish = false
edition = "2021"
[lib]
proc-macro = true
[dependencies]
lazy_static = { version = "1.4" }
proc-macro2 = { version = "1.0" }
quote = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
syn = "2.0"
thiserror = { version = "1.0" }
# Markdown content parsing
gray_matter = { version = "0.2", default-features = false, features = ["yaml"] }
nom = { version = "7.1" }
pulldown-cmark = { version = "0.11" }
syntect = { version = "5.1", features = ["default-themes", "default-syntaxes"] }
words-count = { version = "0.1" }
model = { path = "../model" }
[dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
]