pfetch-rs/pfetch-extractor/Cargo.toml
Adrian Groh e09cc31f7d
refactor: outsource pfetch logo parser code to separate crate
This makes the parse_logo() function accessible at compile-time and
runtime
2023-07-05 19:00:25 +02:00

19 lines
486 B
TOML

[package]
name = "pfetch-extractor"
version = "0.1.5"
authors = ["Gobidev"]
edition = "2021"
keywords = ["pfetch"]
license = "MIT"
description = "A rust proc-macro to extract pfetch logos at compile time"
[lib]
proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pfetch-logo-parser = { version = "0.1.0", path = "../pfetch-logo-parser", features = ["proc-macro"] }
proc-macro2 = "1.0.50"
quote = "1.0.23"