chore: initial draft of proc macros

This commit is contained in:
2026-07-08 17:30:52 -04:00
parent 8e43ff75a5
commit c637ad2d76
8 changed files with 71 additions and 6 deletions

View File

@@ -7,4 +7,5 @@ license = { workspace = true }
[dependencies]
derive_more = { workspace = true }
pyo3 = { workspace = true }
python-utils-macros = { path = "../python-utils-macros" }
snafu = { workspace = true }

View File

@@ -7,6 +7,8 @@ use pyo3::{
};
use snafu::{ResultExt, Snafu};
pub use python_utils_macros::PyFromStr;
pub mod none;
pub use none::IsNone;