diff options
| author | Sébastien Crozet <developer@crozet.re> | 2020-08-25 22:10:25 +0200 |
|---|---|---|
| committer | Sébastien Crozet <developer@crozet.re> | 2020-08-25 22:10:25 +0200 |
| commit | 754a48b7ff6d8c58b1ee08651e60112900b60455 (patch) | |
| tree | 7d777a6c003f1f5d8f8d24f533f35a95a88957fe /src/data/mod.rs | |
| download | rapier-754a48b7ff6d8c58b1ee08651e60112900b60455.tar.gz rapier-754a48b7ff6d8c58b1ee08651e60112900b60455.tar.bz2 rapier-754a48b7ff6d8c58b1ee08651e60112900b60455.zip | |
First public release of Rapier.v0.1.0
Diffstat (limited to 'src/data/mod.rs')
| -rw-r--r-- | src/data/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/data/mod.rs b/src/data/mod.rs new file mode 100644 index 0000000..7c00442 --- /dev/null +++ b/src/data/mod.rs @@ -0,0 +1,4 @@ +//! Data structures modified with guaranteed deterministic behavior after deserialization. + +pub mod arena; +pub(crate) mod graph; |
