1
0
mirror of https://github.com/rm-dr/datapath.git synced 2025-12-12 14:14:12 -08:00

Initial version: v0.0.1

This commit is contained in:
2025-12-02 20:47:26 -08:00
parent b265b7cb68
commit d2aa33d830
9 changed files with 934 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
[package]
name = "datapath-macro"
description = "Type-safe structured paths with partitions, parsing, and schema associations. Dependency for the `datapath` crate."
keywords = ["path", "filesystem", "parsing", "typed", "schema"]
categories = ["filesystem", "data-structures", "parsing"]
version = { workspace = true }
rust-version = { workspace = true }
edition = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
readme = { workspace = true }
authors = { workspace = true }
[lints]
workspace = true
[lib]
proc-macro = true
[dependencies]
syn = { workspace = true }
quote = { workspace = true }
proc-macro2 = { workspace = true }