summaryrefslogtreecommitdiff
path: root/deno_typescript/Cargo.toml
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-09-15 18:36:27 -0400
committerGitHub <noreply@github.com>2019-09-15 18:36:27 -0400
commitc9ef182886cc07d35a5b27fb89163d8cf21a6a47 (patch)
tree6ba1605daa7e9e8cac3f6b926374086906f571b5 /deno_typescript/Cargo.toml
parent1d305c2ac785af6b28649f2023d5008e390eeca0 (diff)
Make deno_cli installable via crates.io (#2946)
- Fixes cargo publish on deno_typescript, deno_cli_snapshots, and deno_cli. - Combines cli_snapshots and js into one directory. - Extracts TS version at compile time rather than runtime - Bumps version awkwardly - it was necessary to test end-to-end publishing. Sorry. - Adds git submodule deno_typescript/typescript
Diffstat (limited to 'deno_typescript/Cargo.toml')
-rw-r--r--deno_typescript/Cargo.toml14
1 files changed, 11 insertions, 3 deletions
diff --git a/deno_typescript/Cargo.toml b/deno_typescript/Cargo.toml
index ebab2a327..ddda684b2 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,16 +1,24 @@
[package]
name = "deno_typescript"
-version = "0.18.0"
+version = "0.18.3"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/ry/deno_typescript"
-authors = ["Ryan Dahl <ry@tinyclouds.org>"]
+authors = ["the Deno authors"]
edition = "2018"
+exclude = [
+ "typescript/tests/*",
+ "typescript/src/*",
+ "typescript/scripts/*",
+ "typescript/doc/*",
+ "typescript/lib/*/*.json",
+]
+
[lib]
path = "lib.rs"
[dependencies]
-deno = { path = "../core" }
+deno = { path = "../core", version = "0.18.0" }
serde_json = "1.0.40"
serde = { version = "1.0.100", features = ["derive"] }