diff options
| author | Bert Belder <bertbelder@gmail.com> | 2020-08-21 17:14:47 +0200 |
|---|---|---|
| committer | Bert Belder <bertbelder@gmail.com> | 2020-08-21 20:21:32 +0200 |
| commit | 29e3f4cd3a42415d73b371f87a6efc787331de86 (patch) | |
| tree | 78e4b62f8504889d1d4605d0acdb0ad1ff5908f8 /core/Cargo.toml | |
| parent | 999e5cf3d44ba41d988f0f3b4f94439a3b794bdc (diff) | |
Split core http benchmark into 'bin_ops' and 'json_ops' variants (#7147)
Diffstat (limited to 'core/Cargo.toml')
| -rw-r--r-- | core/Cargo.toml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index 0e9f53d75..74c80872e 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,5 +1,4 @@ # Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. - [package] name = "deno_core" version = "0.54.0" @@ -20,14 +19,18 @@ lazy_static = "1.4.0" libc = "0.2.74" log = "0.4.11" rusty_v8 = "0.8.1" -serde_json = { version = "1.0.57", features = [ "preserve_order" ] } +serde_json = { version = "1.0.57", features = ["preserve_order"] } smallvec = "1.4.2" url = "2.1.1" [[example]] -name = "deno_core_http_bench" -path = "examples/http_bench.rs" +name = "http_bench_bin_ops" +path = "examples/http_bench_bin_ops.rs" + +[[example]] +name = "http_bench_json_ops" +path = "examples/http_bench_json_ops.rs" -# These dependendencies are only used for deno_core_http_bench. +# These dependendencies are only used for the 'http_bench_*_ops' examples. [dev-dependencies] tokio = { version = "0.2.22", features = ["full"] } |
