diff options
| author | Sébastien Crozet <developer@crozet.re> | 2020-11-24 16:54:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-24 16:54:15 +0100 |
| commit | bdf2e15fdcff4c4757b4875354b2d6e8b9c6939d (patch) | |
| tree | 097166c76d92921b269b28a1e115b3cef89d820b /src/data/mod.rs | |
| parent | c641114f016c47f6b22acc084610847f88ff5a66 (diff) | |
| parent | fcafcac66f1792ea155925e3de5055ef50910fb0 (diff) | |
| download | rapier-bdf2e15fdcff4c4757b4875354b2d6e8b9c6939d.tar.gz rapier-bdf2e15fdcff4c4757b4875354b2d6e8b9c6939d.tar.bz2 rapier-bdf2e15fdcff4c4757b4875354b2d6e8b9c6939d.zip | |
Merge pull request #68 from dimforge/read_contacts
Allow access to contact information
Diffstat (limited to 'src/data/mod.rs')
| -rw-r--r-- | src/data/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/data/mod.rs b/src/data/mod.rs index 0e0459e..672bf94 100644 --- a/src/data/mod.rs +++ b/src/data/mod.rs @@ -1,8 +1,10 @@ //! Data structures modified with guaranteed deterministic behavior after deserialization. +pub use self::coarena::Coarena; pub use self::maybe_serializable_data::MaybeSerializableData; pub mod arena; +mod coarena; pub(crate) mod graph; pub(crate) mod hashmap; mod maybe_serializable_data; |
