forked from madonoharu/tsify
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rename crate * Bump version to 0.5
- Loading branch information
Showing
37 changed files
with
705 additions
and
88 deletions.
There are no files selected for viewing
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,45 +1,53 @@ | ||
[package] | ||
name = "tsify" | ||
version = "0.4.5" | ||
name = "tsify-next" | ||
version = "0.5.0" | ||
edition = "2021" | ||
authors = ["Madono Haru <[email protected]>"] | ||
authors = [ | ||
"Madono Haru <[email protected]>", | ||
"Jason Siefken <[email protected]>" | ||
] | ||
license = "MIT OR Apache-2.0" | ||
description = "Tsify is a library for generating TypeScript definitions from rust code." | ||
repository = "https://github.com/madonoharu/tsify" | ||
homepage = "https://github.com/madonoharu/tsify" | ||
description = "Tsify-next is a library for generating TypeScript definitions from rust code." | ||
repository = "https://github.com/siefkenj/tsify" | ||
homepage = "https://github.com/siefkenj/tsify" | ||
keywords = ["wasm", "wasm-bindgen", "typescript"] | ||
categories = ["wasm"] | ||
|
||
[dependencies] | ||
tsify-macros = { path = "tsify-macros", version = "0.4.3" } | ||
tsify-next-macros = { path = "tsify-next-macros", version = "^0.5" } | ||
wasm-bindgen = { version = "0.2.86", optional = true } | ||
serde = { version = "1.0", optional = true } | ||
serde_json = { version = "1.0", optional = true } | ||
serde-wasm-bindgen = { version = "0.5.0", optional = true } | ||
gloo-utils = { version = "0.1.6", optional = true } | ||
serde-wasm-bindgen = { version = "0.6", optional = true } | ||
gloo-utils = { version = "0.2", optional = true } | ||
|
||
[dev-dependencies] | ||
indoc = "2.0.1" | ||
js-sys = "0.3.63" | ||
indoc = "2.0.5" | ||
js-sys = "0.3" | ||
macrotest = "1.0" | ||
pretty_assertions = "1.3.0" | ||
pretty_assertions = "1.4.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde-wasm-bindgen = "0.5.0" | ||
serde-wasm-bindgen = "0.6" | ||
serde_json = "1.0" | ||
wasm-bindgen = "0.2.86" | ||
wasm-bindgen-test = "0.3.36" | ||
wasm-bindgen = "0.2" | ||
wasm-bindgen-test = "0.3" | ||
|
||
[features] | ||
default = ["json"] | ||
wasm-bindgen = ["tsify-macros/wasm-bindgen", "dep:wasm-bindgen"] | ||
js = ["wasm-bindgen", "tsify-macros/js", "dep:serde", "dep:serde-wasm-bindgen"] | ||
wasm-bindgen = ["tsify-next-macros/wasm-bindgen", "dep:wasm-bindgen"] | ||
js = [ | ||
"wasm-bindgen", | ||
"tsify-next-macros/js", | ||
"dep:serde", | ||
"dep:serde-wasm-bindgen" | ||
] | ||
json = [ | ||
"wasm-bindgen", | ||
"tsify-macros/json", | ||
"tsify-next-macros/json", | ||
"dep:serde", | ||
"dep:gloo-utils", | ||
"dep:serde_json", | ||
] | ||
|
||
[workspace] | ||
members = ["tsify-macros"] | ||
members = ["tsify-next-macros"] |
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
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
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
Oops, something went wrong.