iterable: added custom version

This commit is contained in:
k
2024-10-28 16:51:20 +01:00
parent 48a8aad20e
commit 0bad38a815
13 changed files with 472 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
[package]
name = "struct_iterable_derive"
version = "0.1.0"
authors = ["André de Moraes <deco.moraes@icloud.com>"]
edition = "2021"
description = "An internal crate for struct_iterable"
license = "MIT"
[lib]
proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
syn = "2.0.85"
quote = "1.0.37"
proc-macro2 = "1.0.89"
struct_iterable_internal = { path = "../struct_iterable_internal" }