diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-30 19:30:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-30 19:30:40 -0400 |
commit | e9910d8ae510fcef54ae2f0a83199daa81c15df1 (patch) | |
tree | c92661bb090f2b249508d3b374ed55e516b3f520 /core/BUILD.gn | |
parent | 6744bb8d750b9ab11d2ec9448334732b98feb58a (diff) |
Rename crate deno_core to deno (#2022)
Diffstat (limited to 'core/BUILD.gn')
-rw-r--r-- | core/BUILD.gn | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/BUILD.gn b/core/BUILD.gn index 3439fa25d..e74c26cca 100644 --- a/core/BUILD.gn +++ b/core/BUILD.gn @@ -3,7 +3,7 @@ import("//build_extra/rust/rust.gni") group("default") { testonly = true deps = [ - ":deno_core", + ":deno", ":deno_core_http_bench", ":deno_core_http_bench_test", ":deno_core_test", @@ -17,7 +17,7 @@ group("deno_core_deps") { ] } -# deno_core does not depend on flatbuffers nor tokio. +# deno does not depend on flatbuffers nor tokio. main_extern = [ "$rust_build:futures", "$rust_build:libc", @@ -25,7 +25,7 @@ main_extern = [ "$rust_build:log", ] -rust_crate("deno_core") { +rust_crate("deno") { source_root = "lib.rs" deps = [ ":deno_core_deps", @@ -47,7 +47,7 @@ http_bench_extern = [ "$rust_build:libc", "$rust_build:log", "$rust_build:tokio", - ":deno_core", + ":deno", ] if (is_win) { http_bench_extern += [ "$rust_build:winapi" ] |