feat: implement StringLiteral macro

This commit is contained in:
J / Jacob Babich
2026-07-09 22:20:24 -04:00
parent d6ad9972c7
commit 0565624599
10 changed files with 209 additions and 121 deletions

11
string-literal/Cargo.toml Normal file
View File

@@ -0,0 +1,11 @@
[package]
name = "string-literal"
version = "0.1.0"
edition = "2024"
license.workspace = true
[features]
macros = ["dep:string-literal-macros"]
[dependencies]
string-literal-macros = { optional = true, path = "../string-literal-macros" }