1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 04:52:26 -05:00
denoland-deno/Cargo.toml

57 lines
1.1 KiB
TOML
Raw Normal View History

2019-01-22 04:03:30 +09: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",
]
[[bin]]
name = "deno"
path = "cli/main.rs"
[package]
name = "deno"
2019-03-28 16:10:06 -04:00
version = "0.3.5"
2019-01-13 22:30:38 -08:00
edition = "2018"
[dependencies]
deno_core = { path = "./core" }
ansi_term = "0.11.0"
2019-01-10 01:22:46 +01:00
atty = "0.2.11"
2019-02-27 10:24:22 -08:00
dirs = "1.0.5"
2019-01-10 01:22:46 +01:00
flatbuffers = "0.5.0"
futures = "0.1.25"
getopts = "0.2.18"
2019-02-27 10:24:22 -08:00
http = "0.1.16"
2019-03-29 14:50:07 -04:00
hyper = "0.12.25"
hyper-rustls = "0.16.1"
integer-atomics = "1.0.2"
2019-02-27 10:24:22 -08:00
lazy_static = "1.3.0"
2019-03-29 14:50:07 -04:00
libc = "0.2.51"
2019-01-10 01:22:46 +01:00
log = "0.4.6"
2019-02-11 17:08:21 -08:00
rand = "0.6.5"
2019-03-29 14:50:07 -04:00
regex = "1.1.2"
2019-01-10 01:22:46 +01:00
remove_dir_all = "0.5.1"
2019-02-11 17:08:21 -08:00
ring = "0.14.6"
rustyline = "3.0.0"
2019-03-29 14:50:07 -04:00
serde_json = "1.0.39"
source-map-mappings = "0.5.0"
2019-02-27 10:24:22 -08:00
tempfile = "3.0.7"
2019-03-29 14:50:07 -04:00
tokio = "0.1.18"
tokio-executor = "0.1.7"
tokio-fs = "0.1.6"
tokio-io = "0.1.12"
2019-01-10 01:22:46 +01:00
tokio-process = "0.2.3"
2019-03-29 14:50:07 -04:00
tokio-threadpool = "0.1.13"
2019-01-10 01:22:46 +01:00
url = "1.7.2"
2019-01-13 23:43:00 +01:00
[target.'cfg(windows)'.dependencies]
2019-01-10 01:22:46 +01:00
winapi = "0.3.6"