Skip to content

Commit

Permalink
Move deno_core_http_bench into examples dir (denoland#2127)
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Apr 16, 2019
1 parent 7807afa commit 79a9742
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions core/BUILD.gn
Expand Up @@ -54,15 +54,15 @@ if (is_win) {
}

rust_executable("deno_core_http_bench") {
source_root = "http_bench.rs"
source_root = "examples/http_bench.rs"
deps = [
":deno_core_deps",
]
extern = http_bench_extern
}

rust_test("deno_core_http_bench_test") {
source_root = "http_bench.rs"
source_root = "examples/http_bench.rs"
deps = [
":deno_core_deps",
]
Expand Down
8 changes: 8 additions & 0 deletions core/Cargo.toml
Expand Up @@ -19,3 +19,11 @@ lazy_static = "1.3.0"
libc = "0.2.51"
log = "0.4.6"
serde_json = "1.0.39"

[[example]]
name = "deno_core_http_bench"
path = "examples/http_bench.rs"

# tokio is only used for deno_core_http_bench
[dev_dependencies]
tokio = "0.1.18"
File renamed without changes.
File renamed without changes.

0 comments on commit 79a9742

Please sign in to comment.