-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CHANGELOG, README and Cargo.toml for v0.2.0 release
- Loading branch information
1 parent
8290a8e
commit bd43b6e
Showing
5 changed files
with
73 additions
and
81 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
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 = "asn1rs" | ||
version = "0.2.0-alpha3" | ||
version = "0.2.0" | ||
authors = ["Michael Watzko <[email protected]>"] | ||
edition = "2018" | ||
description = "ASN.1 to Rust, Protobuf and SQL compiler/code generator. Supports ASN.1 UPER" | ||
|
@@ -44,8 +44,8 @@ futures = { version = "0.3.4", optional = true } | |
bytes = { version = "0.5.4", optional = true } | ||
|
||
# feature asn1rs-* | ||
asn1rs-model = { version = "0.2.0-alpha3", path = "asn1rs-model", optional = true } | ||
asn1rs-macros = { version = "0.2.0-alpha3", path = "asn1rs-macros", optional = true } | ||
asn1rs-model = { version = "0.2.0", path = "asn1rs-model", optional = true } | ||
asn1rs-macros = { version = "0.2.0", path = "asn1rs-macros", optional = true } | ||
|
||
[dev-dependencies] | ||
syn = {version = "1.0.28", features = ["full"] } | ||
|
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 = "asn1rs-macros" | ||
version = "0.2.0-alpha3" | ||
version = "0.2.0" | ||
authors = ["Michael Watzko <[email protected]>"] | ||
edition = "2018" | ||
description = "Macros for asn1rs" | ||
|
@@ -20,6 +20,6 @@ debug-proc-macro = [] | |
|
||
|
||
[dependencies] | ||
asn1rs-model = { version = "0.2.0-alpha3", path = "../asn1rs-model" } | ||
asn1rs-model = { version = "0.2.0", path = "../asn1rs-model" } | ||
syn = {version = "1.0.17", features = ["full"] } | ||
quote = "1.0.3" |
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 = "asn1rs-model" | ||
version = "0.2.0-alpha3" | ||
version = "0.2.0" | ||
authors = ["Michael Watzko <[email protected]>"] | ||
edition = "2018" | ||
description = "Rust, Protobuf and SQL model definitions for asn1rs" | ||
|