diff options
author | Bert Belder <bertbelder@gmail.com> | 2019-02-26 16:23:30 -0800 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-02-26 16:23:36 -0800 |
commit | 15831272bbda8e052760afcd8800f75e09a51a53 (patch) | |
tree | 807e3910f7427ca9edae7a3c84c13b0c6712929b /core | |
parent | b8a537d020f5e4495572daa4d8a59f51fa3b20d1 (diff) |
core: add Cargo.toml
This aids development using Visual Studio Code. The http_bench can't be
built with cargo yet because it needs to link with libdeno.
Diffstat (limited to 'core')
-rw-r--r-- | core/Cargo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml new file mode 100644 index 000000000..dd55e7bc0 --- /dev/null +++ b/core/Cargo.toml @@ -0,0 +1,25 @@ +# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. + +[package] +name = "deno_core" +version = "0.0.1" +edition = "2018" + +[lib] +path = "lib.rs" + +[[bin]] +name = "deno_core_http_bench" +path = "http_bench.rs" +required-features = ["bin-dependencies"] + +[features] +bin-dependencies = ["tokio"] + +[dependencies] +futures = "0.1.25" +lazy_static = "1.2.0" +libc = "0.2.48" +log = "0.4.6" +serde_json = "1.0.38" +tokio = { version = "0.1.15", optional = true } |