-
Notifications
You must be signed in to change notification settings - Fork 51
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
e3daa69
commit aa2fcd9
Showing
5 changed files
with
10 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "diplomat_core" | ||
description = "Shared utilities between Diplomat macros and code generation" | ||
version = "0.5.2" | ||
version = "0.6.0" | ||
authors = [ | ||
"Shadaj Laddad <[email protected]>", | ||
"Manish Goregaokar <[email protected]>", | ||
|
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 = "diplomat" | ||
description = "The diplomat FFI generation macro" | ||
version = "0.5.2" | ||
version = "0.6.0" | ||
authors = [ | ||
"Shadaj Laddad <[email protected]>", | ||
"Manish Goregaokar <[email protected]>", | ||
|
@@ -19,7 +19,7 @@ proc-macro = true | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
diplomat_core = { path = "../core", version = "0.5.2" } | ||
diplomat_core = { path = "../core", version = "0.6.0" } | ||
syn = { version = "2.0", features = [ "full", "extra-traits" ] } | ||
quote = "1.0" | ||
proc-macro2 = "1.0.27" | ||
|
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 = "diplomat-runtime" | ||
description = "Common runtime utilities used by diplomat codegen" | ||
version = "0.5.2" | ||
version = "0.6.0" | ||
authors = [ | ||
"Shadaj Laddad <[email protected]>", | ||
"Manish Goregaokar <[email protected]>", | ||
|
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 = "diplomat-tool" | ||
description = "Tool for generating FFI bindings for various languages" | ||
version = "0.5.2" | ||
version = "0.6.0" | ||
authors = [ | ||
"Shadaj Laddad <[email protected]>", | ||
"Manish Goregaokar <[email protected]>", | ||
|
@@ -15,7 +15,7 @@ categories = ["development-tools"] | |
repository = "https://github.com/rust-diplomat/diplomat" | ||
|
||
[dependencies] | ||
diplomat_core = { path = "../core", version = "0.5.1", features = ["displaydoc", "hir"] } | ||
diplomat_core = { path = "../core", version = "0.6.0", features = ["displaydoc", "hir"] } | ||
syn = { version = "2", features = [ "full", "extra-traits" ] } | ||
syn-inline-mod = "0.6.0" | ||
quote = "1.0" | ||
|