0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/Cargo.toml

53 lines
1.1 KiB
TOML
Raw Normal View History

2019-01-21 14:03:30 -05:00
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2018-08-02 23:06:54 -04:00
# Dummy package info required by `cargo fetch`.
# Use tools/sync_third_party.py to install deps after editing this file.
# Deno does not build with cargo. Deno uses a build system called gn.
# See build_extra/rust/BUILD.gn for the manually built configuration of rust
# crates.
[workspace]
members = [
"./",
"core",
]
[package]
name = "deno"
2019-02-27 12:07:32 -05:00
version = "0.3.1"
2019-01-14 01:30:38 -05:00
edition = "2018"
[dependencies]
deno_core = { path = "./core" }
ansi_term = "0.11.0"
2019-01-09 19:22:46 -05:00
atty = "0.2.11"
2019-02-27 13:24:22 -05:00
dirs = "1.0.5"
2019-01-09 19:22:46 -05:00
flatbuffers = "0.5.0"
futures = "0.1.25"
getopts = "0.2.18"
2019-02-27 13:24:22 -05:00
http = "0.1.16"
2019-02-11 20:08:21 -05:00
hyper = "0.12.24"
2019-01-26 07:58:19 -05:00
hyper-rustls = "0.16.0"
integer-atomics = "1.0.2"
2019-02-27 13:24:22 -05:00
lazy_static = "1.3.0"
libc = "0.2.49"
2019-01-09 19:22:46 -05:00
log = "0.4.6"
2019-02-11 20:08:21 -05:00
rand = "0.6.5"
2019-02-07 17:46:52 -05:00
regex = "1.1.0"
2019-01-09 19:22:46 -05:00
remove_dir_all = "0.5.1"
2019-02-11 20:08:21 -05:00
ring = "0.14.6"
rustyline = "3.0.0"
2019-02-11 20:08:21 -05:00
serde_json = "1.0.38"
source-map-mappings = "0.5.0"
2019-02-27 13:24:22 -05:00
tempfile = "3.0.7"
2019-01-26 07:58:19 -05:00
tokio = "0.1.15"
2019-01-09 19:22:46 -05:00
tokio-executor = "0.1.6"
tokio-fs = "0.1.5"
tokio-io = "0.1.11"
tokio-process = "0.2.3"
2019-01-26 07:58:19 -05:00
tokio-threadpool = "0.1.11"
2019-01-09 19:22:46 -05:00
url = "1.7.2"
2019-01-13 17:43:00 -05:00
[target.'cfg(windows)'.dependencies]
2019-01-09 19:22:46 -05:00
winapi = "0.3.6"