diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-09-01 12:42:37 -0500 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-09-01 12:42:37 -0500 |
commit | a83d2e1c8bf968d948991869d1f082b610d9032a (patch) | |
tree | 9b8b587af5af144e9b18e697447e8a1c750754d5 /crates/alloc_buddy/Cargo.toml | |
parent | 2da0dad522523047cf02482caa70edcbe3605af0 (diff) |
Rename crates.
Diffstat (limited to 'crates/alloc_buddy/Cargo.toml')
-rw-r--r-- | crates/alloc_buddy/Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/crates/alloc_buddy/Cargo.toml b/crates/alloc_buddy/Cargo.toml new file mode 100644 index 0000000..5e5c882 --- /dev/null +++ b/crates/alloc_buddy/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "vernos_alloc_buddy" +version = "0.1.0" +edition = "2021" +publish = false + +[dependencies] +allocator-api2 = { version = "0.2.18", default-features = false } +contracts = { version = "0.6.3", default-features = false } +static_assertions = { version = "1.1.0", default-features = false } +vernos_alloc_physmem_free_list = { path = "../alloc_physmem_free_list" } + +[dev-dependencies] +proptest = { version = "0.9.6", default-features = false, features = ["std"] } +nix = { version = "0.29.0", default-features = false, features = ["mman"] } |