Skip to content

Commit

Permalink
Bump asn1rs-* crate version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kellerkindt committed Jan 16, 2024
1 parent 46aeb5d commit 598cb60
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ repository = "https://github.com/kellerkindt/asn1rs"
license = "MIT/Apache-2.0"
readme = "README.md"

#[workspace]
#members = [
# "asn1rs-macros",
# "asn1rs-model"
#]
[workspace]
members = [
"asn1rs-macros",
"asn1rs-model"
]

[lib]
name = "asn1rs"
Expand All @@ -35,8 +35,8 @@ serde = "1.0.195"
serde_derive = "1.0.195"

# feature asn1rs-*
asn1rs-model = { version = "0.3.0", path = "asn1rs-model", optional = true }
asn1rs-macros = { version = "0.3.1", path = "asn1rs-macros", optional = true }
asn1rs-model = { version = "0.4.0", path = "asn1rs-model", optional = true }
asn1rs-macros = { version = "0.4.0", path = "asn1rs-macros", optional = true }

[dev-dependencies]
syn = { version = "1.0.109", features = ["full", "visit", "extra-traits"] }
Expand Down
4 changes: 2 additions & 2 deletions asn1rs-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asn1rs-macros"
version = "0.3.1"
version = "0.4.0"
authors = ["Michael Watzko <[email protected]>"]
edition = "2018"
description = "Macros for asn1rs"
Expand All @@ -20,6 +20,6 @@ debug-proc-macro = []


[dependencies]
asn1rs-model = { version = "0.3.0", path = "../asn1rs-model" }
asn1rs-model = { version = "0.4.0", path = "../asn1rs-model" }
syn = { version = "1.0.109", features = ["full", "visit", "extra-traits"] }
quote = "1.0.35"
2 changes: 1 addition & 1 deletion asn1rs-model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asn1rs-model"
version = "0.3.0"
version = "0.4.0"
authors = ["Michael Watzko <[email protected]>"]
edition = "2018"
description = "Rust and Protobuf model definitions for asn1rs"
Expand Down

0 comments on commit 598cb60

Please sign in to comment.