mirror of
https://github.com/RGBCube/embd-rs
synced 2025-07-28 22:17:44 +00:00
22 lines
598 B
TOML
22 lines
598 B
TOML
[package]
|
|
name = "embd-macros"
|
|
description = "Read files or directories from the filesystem at runtime on debug, embed on release."
|
|
repository = "https://github.com/RGBCube/embd-rs"
|
|
license = "MIT"
|
|
keywords = ["embedding", "files", "debug-optimization", "bundling"]
|
|
categories = ["filesystem"]
|
|
authors = ["RGBCube"]
|
|
version = "0.1.5"
|
|
edition = "2021"
|
|
include = ["src/**/*.rs", "../README.md"]
|
|
|
|
[package.metadata.docs.rs]
|
|
rustc-args = ["--cfg", "procmacro2_semver_exempt"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = { version = "1", features = ["span-locations"] }
|
|
quote = "1"
|
|
syn = "2"
|