-
-
Notifications
You must be signed in to change notification settings - Fork 45
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
1 parent
3789d62
commit 60ffc27
Showing
6 changed files
with
15 additions
and
15 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,7 +1,7 @@ | ||
[package] | ||
name = "specta-jsdoc" | ||
description = "Export your Rust types to JSDoc" | ||
version = "0.0.7" | ||
version = "0.0.8" | ||
authors = ["Oscar Beaumont <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
@@ -22,7 +22,7 @@ default = [] | |
workspace = true | ||
|
||
[dependencies] | ||
specta = { version = "=2.0.0-rc.20", path = "../specta" } | ||
specta-typescript = { version = "=0.0.7", path = "../specta-typescript" } | ||
specta = { version = "=2.0.0-rc.21", path = "../specta" } | ||
specta-typescript = { version = "=0.0.8", path = "../specta-typescript" } | ||
# TODO: Don't depend on serde | ||
specta-serde = { version = "=0.0.7", path = "../specta-serde" } | ||
specta-serde = { version = "=0.0.8", path = "../specta-serde" } |
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,7 +1,7 @@ | ||
[package] | ||
name = "specta-macros" | ||
description = "Macros for specta. Don't use directly!" | ||
version = "2.0.0-rc.17" | ||
version = "2.0.0-rc.18" | ||
authors = ["Oscar Beaumont <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name = "specta-serde" | ||
description = "Serde support for Specta" | ||
version = "0.0.7" | ||
version = "0.0.8" | ||
authors = ["Oscar Beaumont <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
@@ -19,5 +19,5 @@ rustdoc-args = ["--cfg", "docsrs"] | |
workspace = true | ||
|
||
[dependencies] | ||
specta = { version = "=2.0.0-rc.20", path = "../specta" } | ||
specta = { version = "=2.0.0-rc.21", path = "../specta" } | ||
thiserror = "1.0.61" |
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,7 +1,7 @@ | ||
[package] | ||
name = "specta-typescript" | ||
description = "Export your Rust types to TypeScript" | ||
version = "0.0.7" | ||
version = "0.0.8" | ||
authors = ["Oscar Beaumont <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
@@ -25,7 +25,7 @@ function = ["specta/function"] | |
workspace = true | ||
|
||
[dependencies] | ||
specta = { version = "=2.0.0-rc.20", path = "../specta" } | ||
specta = { version = "=2.0.0-rc.21", path = "../specta" } | ||
# TODO: Don't depend on serde | ||
specta-serde = { version = "=0.0.7", path = "../specta-serde" } | ||
specta-serde = { version = "=0.0.8", path = "../specta-serde" } | ||
thiserror = "1.0.61" |
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,7 +1,7 @@ | ||
[package] | ||
name = "specta-util" | ||
description = "High-level utilities for working with Specta" | ||
version = "0.0.7" | ||
version = "0.0.8" | ||
authors = ["Oscar Beaumont <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
@@ -25,6 +25,6 @@ serde = [] | |
workspace = true | ||
|
||
[dependencies] | ||
specta = { version = "=2.0.0-rc.20", path = "../specta" } | ||
specta-macros = { version = "=2.0.0-rc.17", path = "../specta-macros", default-features = false, optional = true } | ||
specta = { version = "=2.0.0-rc.21", path = "../specta" } | ||
specta-macros = { version = "=2.0.0-rc.18", path = "../specta-macros", default-features = false, optional = true } | ||
serde = "1.0.204" # TODO: Can we remove this or at least make it optional behind the `serde` flag |
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,7 +1,7 @@ | ||
[package] | ||
name = "specta" | ||
description = "Easily export your Rust types to other languages" | ||
version = "2.0.0-rc.20" | ||
version = "2.0.0-rc.21" | ||
authors = ["Oscar Beaumont <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
@@ -87,7 +87,7 @@ interop = ["dep:specta1"] | |
workspace = true | ||
|
||
[dependencies] | ||
specta-macros = { version = "=2.0.0-rc.17", optional = true, path = "../specta-macros" } | ||
specta-macros = { version = "=2.0.0-rc.18", optional = true, path = "../specta-macros" } | ||
paste = { version = "1", optional = true } | ||
thiserror = "1.0.61" | ||
|
||
|