2019-09-02 17:07:11 -04:00
|
|
|
[package]
|
|
|
|
name = "deno_typescript"
|
2019-09-24 18:45:31 -04:00
|
|
|
version = "0.19.0"
|
2019-09-02 17:07:11 -04:00
|
|
|
license = "MIT"
|
|
|
|
description = "To compile TypeScript to a snapshot during build.rs"
|
2019-10-03 01:32:22 -04:00
|
|
|
repository = "https://github.com/denoland/deno"
|
2019-09-15 18:36:27 -04:00
|
|
|
authors = ["the Deno authors"]
|
2019-09-02 17:07:11 -04:00
|
|
|
edition = "2018"
|
|
|
|
|
2019-09-15 18:36:27 -04:00
|
|
|
exclude = [
|
|
|
|
"typescript/tests/*",
|
|
|
|
"typescript/src/*",
|
|
|
|
"typescript/scripts/*",
|
|
|
|
"typescript/doc/*",
|
|
|
|
"typescript/lib/*/*.json",
|
|
|
|
]
|
|
|
|
|
2019-09-02 17:07:11 -04:00
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-09-24 18:45:31 -04:00
|
|
|
deno = { path = "../core", version = "0.19.0" }
|
2019-09-12 16:20:15 -04:00
|
|
|
serde_json = "1.0.40"
|
|
|
|
serde = { version = "1.0.100", features = ["derive"] }
|