├── .github ├── FUNDING.yml └── workflows │ └── gh-pages.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── TODO.md ├── book.toml ├── book ├── SUMMARY.md └── rel.md ├── heresy ├── Cargo.toml └── src │ ├── alloc.rs │ ├── boxed.rs │ └── lib.rs ├── macroix ├── Cargo.toml └── src │ ├── attr_value.rs │ ├── case.rs │ ├── lib.rs │ └── repr.rs ├── media ├── logo.png ├── logo.svg ├── logo_color.png ├── logo_color.svg ├── logo_text.png ├── logo_text.svg ├── logo_text_color.png └── logo_text_color.svg ├── mischief ├── Cargo.toml └── src │ ├── frame.rs │ ├── in.rs │ ├── lib.rs │ ├── metadata.rs │ ├── pointer.rs │ ├── region.rs │ ├── slot.rs │ └── unique │ ├── ghost_ref.rs │ ├── mod.rs │ ├── static_ref.rs │ └── token.rs ├── mischief_derive ├── Cargo.toml └── src │ ├── lib.rs │ ├── singleton.rs │ └── unique.rs ├── raw_enum ├── Cargo.toml └── src │ └── lib.rs ├── raw_enum_macro ├── Cargo.toml └── src │ └── lib.rs ├── rel_alloc ├── Cargo.toml ├── bench_tests │ ├── bench.rs │ ├── from_data.rs │ ├── gen.rs │ ├── log │ │ ├── data.rs │ │ └── mod.rs │ ├── mc_savedata │ │ ├── data.rs │ │ └── mod.rs │ ├── mesh │ │ ├── data.rs │ │ └── mod.rs │ └── test.rs └── src │ ├── alloc.rs │ ├── boxed.rs │ ├── emplace_in.rs │ ├── lib.rs │ ├── string.rs │ └── vec.rs ├── rel_core ├── Cargo.toml └── src │ ├── basis.rs │ ├── emplace │ ├── impls.rs │ └── mod.rs │ ├── export.rs │ ├── lib.rs │ ├── move │ ├── impls.rs │ └── mod.rs │ ├── option.rs │ ├── portable.rs │ ├── primitive.rs │ ├── rel_mem.rs │ ├── rel_ptr.rs │ ├── rel_ref.rs │ └── rel_tuple.rs ├── rel_core_derive ├── Cargo.toml └── src │ ├── lib.rs │ ├── move.rs │ └── portable.rs ├── rel_example ├── Cargo.toml └── src │ └── main.rs ├── rel_slab_allocator ├── Cargo.toml └── src │ └── lib.rs ├── rel_util ├── Cargo.toml └── src │ └── lib.rs ├── rustfmt.toml ├── situ ├── Cargo.toml └── src │ ├── alloc │ ├── allocator.rs │ ├── mod.rs │ └── regional.rs │ ├── drop │ ├── impls.rs │ └── mod.rs │ ├── fmt.rs │ ├── lib.rs │ ├── mut.rs │ ├── ops.rs │ ├── owned_val.rs │ ├── pinned.rs │ ├── ref.rs │ ├── str.rs │ └── val.rs └── situ_derive ├── Cargo.toml └── src ├── drop_raw.rs └── lib.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: rkyv -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/TODO.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/book.toml -------------------------------------------------------------------------------- /book/SUMMARY.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | 3 | [rel](./rel.md) 4 | -------------------------------------------------------------------------------- /book/rel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/book/rel.md -------------------------------------------------------------------------------- /heresy/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/heresy/Cargo.toml -------------------------------------------------------------------------------- /heresy/src/alloc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/heresy/src/alloc.rs -------------------------------------------------------------------------------- /heresy/src/boxed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/heresy/src/boxed.rs -------------------------------------------------------------------------------- /heresy/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/heresy/src/lib.rs -------------------------------------------------------------------------------- /macroix/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/macroix/Cargo.toml -------------------------------------------------------------------------------- /macroix/src/attr_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/macroix/src/attr_value.rs -------------------------------------------------------------------------------- /macroix/src/case.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/macroix/src/case.rs -------------------------------------------------------------------------------- /macroix/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/macroix/src/lib.rs -------------------------------------------------------------------------------- /macroix/src/repr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/macroix/src/repr.rs -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/media/logo.svg -------------------------------------------------------------------------------- /media/logo_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/media/logo_color.png -------------------------------------------------------------------------------- /media/logo_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/media/logo_color.svg -------------------------------------------------------------------------------- /media/logo_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/media/logo_text.png -------------------------------------------------------------------------------- /media/logo_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/media/logo_text.svg -------------------------------------------------------------------------------- /media/logo_text_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/media/logo_text_color.png -------------------------------------------------------------------------------- /media/logo_text_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/media/logo_text_color.svg -------------------------------------------------------------------------------- /mischief/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief/Cargo.toml -------------------------------------------------------------------------------- /mischief/src/frame.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief/src/frame.rs -------------------------------------------------------------------------------- /mischief/src/in.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief/src/in.rs -------------------------------------------------------------------------------- /mischief/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief/src/lib.rs -------------------------------------------------------------------------------- /mischief/src/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief/src/metadata.rs -------------------------------------------------------------------------------- /mischief/src/pointer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief/src/pointer.rs -------------------------------------------------------------------------------- /mischief/src/region.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief/src/region.rs -------------------------------------------------------------------------------- /mischief/src/slot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief/src/slot.rs -------------------------------------------------------------------------------- /mischief/src/unique/ghost_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief/src/unique/ghost_ref.rs -------------------------------------------------------------------------------- /mischief/src/unique/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief/src/unique/mod.rs -------------------------------------------------------------------------------- /mischief/src/unique/static_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief/src/unique/static_ref.rs -------------------------------------------------------------------------------- /mischief/src/unique/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief/src/unique/token.rs -------------------------------------------------------------------------------- /mischief_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief_derive/Cargo.toml -------------------------------------------------------------------------------- /mischief_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief_derive/src/lib.rs -------------------------------------------------------------------------------- /mischief_derive/src/singleton.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief_derive/src/singleton.rs -------------------------------------------------------------------------------- /mischief_derive/src/unique.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/mischief_derive/src/unique.rs -------------------------------------------------------------------------------- /raw_enum/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/raw_enum/Cargo.toml -------------------------------------------------------------------------------- /raw_enum/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/raw_enum/src/lib.rs -------------------------------------------------------------------------------- /raw_enum_macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/raw_enum_macro/Cargo.toml -------------------------------------------------------------------------------- /raw_enum_macro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/raw_enum_macro/src/lib.rs -------------------------------------------------------------------------------- /rel_alloc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/Cargo.toml -------------------------------------------------------------------------------- /rel_alloc/bench_tests/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/bench_tests/bench.rs -------------------------------------------------------------------------------- /rel_alloc/bench_tests/from_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/bench_tests/from_data.rs -------------------------------------------------------------------------------- /rel_alloc/bench_tests/gen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/bench_tests/gen.rs -------------------------------------------------------------------------------- /rel_alloc/bench_tests/log/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/bench_tests/log/data.rs -------------------------------------------------------------------------------- /rel_alloc/bench_tests/log/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/bench_tests/log/mod.rs -------------------------------------------------------------------------------- /rel_alloc/bench_tests/mc_savedata/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/bench_tests/mc_savedata/data.rs -------------------------------------------------------------------------------- /rel_alloc/bench_tests/mc_savedata/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/bench_tests/mc_savedata/mod.rs -------------------------------------------------------------------------------- /rel_alloc/bench_tests/mesh/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/bench_tests/mesh/data.rs -------------------------------------------------------------------------------- /rel_alloc/bench_tests/mesh/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/bench_tests/mesh/mod.rs -------------------------------------------------------------------------------- /rel_alloc/bench_tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/bench_tests/test.rs -------------------------------------------------------------------------------- /rel_alloc/src/alloc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/src/alloc.rs -------------------------------------------------------------------------------- /rel_alloc/src/boxed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/src/boxed.rs -------------------------------------------------------------------------------- /rel_alloc/src/emplace_in.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/src/emplace_in.rs -------------------------------------------------------------------------------- /rel_alloc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/src/lib.rs -------------------------------------------------------------------------------- /rel_alloc/src/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/src/string.rs -------------------------------------------------------------------------------- /rel_alloc/src/vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_alloc/src/vec.rs -------------------------------------------------------------------------------- /rel_core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/Cargo.toml -------------------------------------------------------------------------------- /rel_core/src/basis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/basis.rs -------------------------------------------------------------------------------- /rel_core/src/emplace/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/emplace/impls.rs -------------------------------------------------------------------------------- /rel_core/src/emplace/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/emplace/mod.rs -------------------------------------------------------------------------------- /rel_core/src/export.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/export.rs -------------------------------------------------------------------------------- /rel_core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/lib.rs -------------------------------------------------------------------------------- /rel_core/src/move/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/move/impls.rs -------------------------------------------------------------------------------- /rel_core/src/move/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/move/mod.rs -------------------------------------------------------------------------------- /rel_core/src/option.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/option.rs -------------------------------------------------------------------------------- /rel_core/src/portable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/portable.rs -------------------------------------------------------------------------------- /rel_core/src/primitive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/primitive.rs -------------------------------------------------------------------------------- /rel_core/src/rel_mem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/rel_mem.rs -------------------------------------------------------------------------------- /rel_core/src/rel_ptr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/rel_ptr.rs -------------------------------------------------------------------------------- /rel_core/src/rel_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/rel_ref.rs -------------------------------------------------------------------------------- /rel_core/src/rel_tuple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core/src/rel_tuple.rs -------------------------------------------------------------------------------- /rel_core_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core_derive/Cargo.toml -------------------------------------------------------------------------------- /rel_core_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core_derive/src/lib.rs -------------------------------------------------------------------------------- /rel_core_derive/src/move.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core_derive/src/move.rs -------------------------------------------------------------------------------- /rel_core_derive/src/portable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_core_derive/src/portable.rs -------------------------------------------------------------------------------- /rel_example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_example/Cargo.toml -------------------------------------------------------------------------------- /rel_example/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_example/src/main.rs -------------------------------------------------------------------------------- /rel_slab_allocator/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_slab_allocator/Cargo.toml -------------------------------------------------------------------------------- /rel_slab_allocator/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_slab_allocator/src/lib.rs -------------------------------------------------------------------------------- /rel_util/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_util/Cargo.toml -------------------------------------------------------------------------------- /rel_util/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rel_util/src/lib.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /situ/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/Cargo.toml -------------------------------------------------------------------------------- /situ/src/alloc/allocator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/alloc/allocator.rs -------------------------------------------------------------------------------- /situ/src/alloc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/alloc/mod.rs -------------------------------------------------------------------------------- /situ/src/alloc/regional.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/alloc/regional.rs -------------------------------------------------------------------------------- /situ/src/drop/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/drop/impls.rs -------------------------------------------------------------------------------- /situ/src/drop/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/drop/mod.rs -------------------------------------------------------------------------------- /situ/src/fmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/fmt.rs -------------------------------------------------------------------------------- /situ/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/lib.rs -------------------------------------------------------------------------------- /situ/src/mut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/mut.rs -------------------------------------------------------------------------------- /situ/src/ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/ops.rs -------------------------------------------------------------------------------- /situ/src/owned_val.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/owned_val.rs -------------------------------------------------------------------------------- /situ/src/pinned.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/pinned.rs -------------------------------------------------------------------------------- /situ/src/ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/ref.rs -------------------------------------------------------------------------------- /situ/src/str.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/str.rs -------------------------------------------------------------------------------- /situ/src/val.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ/src/val.rs -------------------------------------------------------------------------------- /situ_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ_derive/Cargo.toml -------------------------------------------------------------------------------- /situ_derive/src/drop_raw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ_derive/src/drop_raw.rs -------------------------------------------------------------------------------- /situ_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkyv/rel/HEAD/situ_derive/src/lib.rs --------------------------------------------------------------------------------