chore: extract arbitrary into its own crate arbitrary-value

This commit is contained in:
2025-04-21 16:40:27 -04:00
parent 325cb60aa1
commit ea7e9e3c53
8 changed files with 45 additions and 58 deletions

View File

@@ -0,0 +1,7 @@
use std::collections::BTreeMap;
use super::{arbitrary::Arbitrary, map_key::MapKey};
#[cfg_attr(feature = "pyo3", derive(pyo3::FromPyObject, pyo3::IntoPyObject))]
#[derive(Debug, Clone, Default, derive_more::From, derive_more::Into)]
pub struct Map(pub BTreeMap<MapKey, Arbitrary>);