-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the release version, descriptions etc.
- Loading branch information
Showing
4 changed files
with
12 additions
and
12 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,9 +1,9 @@ | ||
[package] | ||
name = "asn1-compiler" | ||
version = "0.5.9" | ||
version = "0.6.0" | ||
authors = ["Abhijit Gadgil <[email protected]>"] | ||
edition = "2018" | ||
description = "ASN.1 Compiler in Rust." | ||
description = "ASN.1 Toolkit in Rust. Compiler for ASN.1 specification, ASN.1 codecs and derive macros for ASN.1 Codecs." | ||
keywords = ["asn1", "per"] | ||
repository = "https://github.com/gabhijit/hampi.git" | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -15,12 +15,12 @@ maintenance = { status = "actively-developed" } | |
|
||
[dependencies] | ||
lazy_static = { version = "1.4.0" } | ||
topological-sort = { version = "0.1" } | ||
topological-sort = { version = "0.2" } | ||
proc-macro2 = { version = "1.0" } | ||
quote = { version = "1.0" } | ||
heck = { version = "0.4" } | ||
bitvec = { version = "1.0" } | ||
clap = { version = "4.0.10", features = ["derive"] } | ||
clap = { version = "4.4", features = ["derive"] } | ||
docx-rs = { version = "0.4.5" , optional = true } | ||
regex = { version = "1.6.0" } | ||
log = { version = "0.4" } | ||
|
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 = "asn1-codecs" | ||
version = "0.5.9" | ||
version = "0.6.0" | ||
description = "ASN.1 Codecs for Rust Types representing ASN.1 Types." | ||
authors = ["Abhijit Gadgil <[email protected]>"] | ||
keywords = ["asn1", "per", "decoder", "encoder"] | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "asn1_codecs_derive" | |
authors = ["Abhijit Gadgil <[email protected]>"] | ||
description = "ASN.1 Codecs derive Macros" | ||
keywords = ["asn1", "per"] | ||
version = "0.5.9" | ||
version = "0.6.0" | ||
edition = "2018" | ||
license = "Apache-2.0 OR MIT" | ||
repository = "https://github.com/gabhijit/hampi.git" | ||
|
@@ -18,7 +18,7 @@ proc-macro = true | |
|
||
[dependencies] | ||
log = { version = "0.4" } | ||
asn1-codecs = { path = "../codecs" , version = "=0.5.9"} | ||
asn1-codecs = { path = "../codecs" , version = "=0.6.0"} | ||
bitvec = { version = "1.0" } | ||
proc-macro2 = { version = "1.0" } | ||
quote = { version = "1.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,23 +1,23 @@ | ||
[package] | ||
name = "hampi-examples" | ||
version = "0.5.9" | ||
version = "0.6.0" | ||
authors = ["Abhijit Gadgil <[email protected]>"] | ||
edition = "2018" | ||
description = "Examples for usage of ASN.1 Compiler and Codecs." | ||
license = "Apache-2.0 OR MIT" | ||
publish = false | ||
|
||
[build-dependencies] | ||
asn1-compiler = { path = "../asn-compiler", version = "=0.5.9" } | ||
asn1-compiler = { path = "../asn-compiler", version = "=0.6.0" } | ||
|
||
[dev-dependencies] | ||
asn1-codecs = { path = "../codecs", version = "=0.5.9" } | ||
asn1_codecs_derive = { path = "../codecs_derive", version = "=0.5.9" } | ||
asn1-codecs = { path = "../codecs", version = "=0.6.0" } | ||
asn1_codecs_derive = { path = "../codecs_derive", version = "=0.6.0" } | ||
trybuild = { version = "1.0" } | ||
hex = { version = "0.4" } | ||
bitvec = { version = "1.0" , features = ["serde"]} | ||
log = { version = "0.4" } | ||
criterion = { version = "0.4" , features = ["rayon"]} | ||
criterion = { version = "0.5" , features = ["rayon"]} | ||
env_logger = { version = "0.9" } | ||
serde = { version = "1.0" , features = ["derive"]} | ||
|
||
|