-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
27 additions
and
27 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ts-bindgen-build-support" | ||
version = "0.4.0-pre" | ||
version = "0.4.0" | ||
description = "Generate a wasm-bindgen interface from typescript definitions. Build-time utilities." | ||
authors = ["Adam Berger <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ts-bindgen-gen" | ||
version = "0.4.0-pre" | ||
version = "0.4.0" | ||
description = "Generate a wasm-bindgen interface from typescript definitions" | ||
authors = ["Adam Berger <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -23,7 +23,7 @@ unicode-xid = "0.2.2" | |
heck = "0.3.3" | ||
strum_macros = "0.23.0" | ||
enum_to_enum = "0.1.0" | ||
ts-bindgen-build-support = { version = "=0.4.0-pre", path = "../ts-bindgen-build-support" } | ||
ts-bindgen-build-support = { version = "=0.4.0", path = "../ts-bindgen-build-support" } | ||
|
||
[dev-dependencies] | ||
tempfile = "3.2.0" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ts-bindgen-macro" | ||
version = "0.4.0-pre" | ||
version = "0.4.0" | ||
description = "Macro to generate a wasm-bindgen interface from typescript definitions" | ||
authors = ["Adam Berger <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -15,7 +15,7 @@ categories = ["compilers", "command-line-utilities", "development-tools::ffi", " | |
proc-macro = true | ||
|
||
[dependencies] | ||
ts-bindgen-gen = { version = "=0.4.0-pre", path = "../ts-bindgen-gen" } | ||
ts-bindgen-gen = { version = "0.4.0", path = "../ts-bindgen-gen" } | ||
quote = "1.0" | ||
syn = "1.0.74" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ts-bindgen-rt" | ||
version = "0.4.0-pre" | ||
version = "0.4.0" | ||
description = "Runtime dependency for ts-bindgen. Supports wasm-bindgen interfaces autogenerated from typescript definitions" | ||
authors = ["Adam Berger <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ts-bindgen-web" | ||
version = "0.4.0-pre" | ||
version = "0.4.0" | ||
description = "Web interface for generating wasm-bindgen bindings from typescript definitions" | ||
authors = ["Adam Berger <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -23,7 +23,7 @@ opt-level = "s" | |
[dependencies] | ||
wasm-bindgen = "0.2.63" | ||
yew = "0.19.3" | ||
ts-bindgen = { version = "0.4.0-pre", path = "../ts-bindgen", default-features = false } | ||
ts-bindgen = { version = "0.4.0", path = "../ts-bindgen", default-features = false } | ||
js-sys = "0.3.53" | ||
web-sys = { version = "0.3.53", features = ["Window"] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ts-bindgen" | ||
version = "0.4.0-pre" | ||
version = "0.4.0" | ||
description = "Generate a wasm-bindgen interface from typescript definitions" | ||
authors = ["Adam Berger <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -22,7 +22,7 @@ default = ["bin"] | |
bin = ["clap", "which"] | ||
|
||
[dependencies] | ||
ts-bindgen-gen = { version = "=0.4.0-pre", path = "../ts-bindgen-gen" } | ||
ts-bindgen-gen = { version = "=0.4.0", path = "../ts-bindgen-gen" } | ||
clap = { version = "3.0.1", optional = true, features = ["derive"] } | ||
which = { version = "4.2.2", optional = true } | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ts-bindgen-example-paperjs" | ||
version = "0.2.0" | ||
version = "0.4.0" | ||
description = "Example of using ts-bindgen to interface with three.js" | ||
authors = ["Adam Berger <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -21,5 +21,5 @@ wasm-bindgen-test = "0.3.13" | |
wasm-bindgen = "0.2.63" | ||
js-sys = "0.3.53" | ||
web-sys = { version = "0.3.53", features = ["Window", "HtmlCanvasElement", "ImageData", "SvgElement", "HtmlImageElement", "CanvasRenderingContext2d", "HtmlScriptElement"] } | ||
ts-bindgen-rt = { version = "0.4.0-pre", path = "../../../ts-bindgen-rt" } | ||
ts-bindgen-rt = { version = "0.4.0", path = "../../../ts-bindgen-rt" } | ||
serde = { version = "1.0", features = ["derive"] } |