initial commit

This commit is contained in:
nora 2021-12-20 14:00:10 +01:00
commit 56d01a9464
3 changed files with 18 additions and 0 deletions

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
/target
Cargo.lock
.idea
*.iml

8
Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "vechonk"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

6
src/lib.rs Normal file
View file

@ -0,0 +1,6 @@
//!
//! A `Vec<T: ?Sized>`
//!
//! It's implemented by laying out the elements in memory contiguously like `alloc::vec::Vec`
struct Vechonk<T: ?Sized>;