From 6a39895f1ce33d2ec4fe916ee6a6ce731c9d0a12 Mon Sep 17 00:00:00 2001 From: Elle Imhoff Date: Thu, 4 Aug 2022 16:23:27 -0500 Subject: [PATCH] use library/alloc instead of liblumen_alloc from root --- native_implemented/otp/Cargo.toml | 2 +- native_implemented/web/Cargo.toml | 2 +- runtimes/full/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/native_implemented/otp/Cargo.toml b/native_implemented/otp/Cargo.toml index a5db76d4a..97a52235a 100644 --- a/native_implemented/otp/Cargo.toml +++ b/native_implemented/otp/Cargo.toml @@ -11,7 +11,7 @@ crate-type = ["staticlib", "rlib"] [dependencies] anyhow = "1.0" lazy_static = "1.4" -liblumen_alloc = { path = "../../liblumen_alloc" } +liblumen_alloc = { path = "../../library/alloc" } lumen_rt_core = { path = "../../runtimes/core" } native_implemented = { path = "../macro" } num-bigint = "0.4" diff --git a/native_implemented/web/Cargo.toml b/native_implemented/web/Cargo.toml index 4bd1a43df..fa66810b9 100644 --- a/native_implemented/web/Cargo.toml +++ b/native_implemented/web/Cargo.toml @@ -12,7 +12,7 @@ crate-type = ["staticlib", "rlib"] [dependencies] anyhow = "1.0.11" js-sys = "0.3.25" -liblumen_alloc = { path = "../../liblumen_alloc" } +liblumen_alloc = { path = "../../library/alloc" } liblumen_otp = { path = "../otp" } lumen_rt_full = { path = "../../runtimes/full" } panic-control = "0.1.4" diff --git a/runtimes/full/Cargo.toml b/runtimes/full/Cargo.toml index 1bcad765e..84d8129d7 100644 --- a/runtimes/full/Cargo.toml +++ b/runtimes/full/Cargo.toml @@ -15,7 +15,7 @@ colored = "2.0" thiserror = "1.0" lazy_static = "1.4" libc = "0.2" -liblumen_alloc = { path = "../../liblumen_alloc" } +liblumen_alloc = { path = "../../library/alloc" } log = "0.4" lumen_rt_core = { path = "../core" } num-bigint = "0.4"