diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 3 | ||||
-rw-r--r-- | cli/main.rs | 7 |
2 files changed, 0 insertions, 10 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b1da79b82..59cabd915 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -120,9 +120,6 @@ winapi = { workspace = true, features = ["knownfolders", "mswsock", "objbase", " [target.'cfg(unix)'.dependencies] nix.workspace = true -[target.'cfg(not(target_env = "msvc"))'.dependencies] -tikv-jemallocator.workspace = true - [dev-dependencies] deno_bench_util.workspace = true dotenv = "=0.15.0" diff --git a/cli/main.rs b/cli/main.rs index 031ab07e0..73820cb93 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -26,13 +26,6 @@ mod version; mod watcher; mod worker; -#[cfg(not(target_env = "msvc"))] -use tikv_jemallocator::Jemalloc; - -#[cfg(not(target_env = "msvc"))] -#[global_allocator] -static GLOBAL: Jemalloc = Jemalloc; - use crate::args::flags_from_vec; use crate::args::DenoSubcommand; use crate::args::Flags; |