Skip to content

File tree

11 files changed

+28
-28
lines changed

11 files changed

+28
-28
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rasn"
3-
version = "0.5.3"
3+
version = "0.6.0"
44
categories = ["encoding", "no-std", "parser-implementations"]
55
authors = ["Erin Power <[email protected]>"]
66
edition = "2018"
@@ -39,7 +39,7 @@ num-traits = { version = "0.2.14", default-features = false }
3939
snafu = { version = "0.7", default-features = false }
4040
bytes = { version = "1.1.0", default-features = false }
4141
bitvec = { version = "1", default-features = false, features = ["alloc"] }
42-
rasn-derive = { version = "0.5.0", path = "macros", optional = true }
42+
rasn-derive = { version = "0.6.0", path = "macros", optional = true }
4343
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
4444
konst = { version = "0.2.13", default-features = false }
4545

macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rasn-derive"
3-
version = "0.5.2"
3+
version = "0.6.0"
44
categories = ["encoding", "no-std", "parser-implementations"]
55
authors = ["Erin Power <[email protected]>"]
66
edition = "2018"

standards/cms/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "rasn-cms"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
edition = "2018"
55
description = "Data types for handling Cryptographic Message Syntax."
66
license = "Apache-2.0/MIT"
77

88
[dependencies.rasn]
9-
version = "0.5.0"
9+
version = "0.6.0"
1010
path = "../.."
1111

1212
[dependencies.rasn-pkix]
13-
version = "0.5.0"
13+
version = "0.6.0"
1414
path = "../pkix"

standards/kerberos/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rasn-kerberos"
3-
version = "0.5.3"
3+
version = "0.6.0"
44
authors = ["Erin Power <[email protected]>"]
55
edition = "2018"
66
description = "Data types for Kerberos V5"
@@ -15,8 +15,8 @@ features = ["otp"]
1515
otp = ["rasn-pkix"]
1616

1717
[dependencies]
18-
rasn = { path = "../..", version = "0.5.0" }
19-
rasn-pkix = { path = "../pkix", version = "0.5.0", optional = true }
18+
rasn = { path = "../..", version = "0.6.0" }
19+
rasn-pkix = { path = "../pkix", version = "0.6.0", optional = true }
2020

2121
[dev-dependencies]
2222
pretty_assertions = "1.1.0"

standards/ldap/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "rasn-ldap"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2018"
55
description = "Data types for Lightweight Directory Access Protocol."
66
license = "Apache-2.0/MIT"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

1010
[dependencies]
11-
rasn = { path = "../..", version = "0.5.0" }
11+
rasn = { path = "../..", version = "0.6.0" }

standards/mib/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "rasn-mib"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2018"
55
description = "Data types for handling Management Information Base objects."
66
license = "Apache-2.0/MIT"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

1010
[dependencies]
11-
smi = { path = "../smi", package = "rasn-smi", version = "0.5.0" }
12-
rasn = { path = "../..", version = "0.5.0" }
11+
smi = { path = "../smi", package = "rasn-smi", version = "0.6.0" }
12+
rasn = { path = "../..", version = "0.6.0" }

standards/ocsp/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rasn-ocsp"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Erin Power <[email protected]>"]
55
edition = "2018"
66
description = "Data types for Online Certificate Status Protocol"
@@ -9,5 +9,5 @@ license = "Apache-2.0/MIT"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.5.0" }
13-
rasn-pkix = { path = "../pkix", version = "0.5.0" }
12+
rasn = { path = "../..", version = "0.6.0" }
13+
rasn-pkix = { path = "../pkix", version = "0.6.0" }

standards/pkix/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rasn-pkix"
3-
version = "0.5.2"
3+
version = "0.6.0"
44
edition = "2018"
55
description = "Data types for handling Public Key Infrastructure (PKIX) objects."
66
license = "Apache-2.0/MIT"
@@ -9,7 +9,7 @@ repository = "https://github.com/XAMPPRocky/rasn"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.5.0" }
12+
rasn = { path = "../..", version = "0.6.0" }
1313

1414
[dev-dependencies]
1515
base64 = "0.13"

standards/smi/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rasn-smi"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Erin Power <[email protected]>"]
55
edition = "2018"
66
description = "Data types for handling Structure for Management Information"
@@ -9,5 +9,5 @@ license = "Apache-2.0/MIT"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.5.0" }
12+
rasn = { path = "../..", version = "0.6.0" }
1313
chrono = "0.4.19"

standards/smime/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rasn-smime"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Erin Power <[email protected]>"]
55
edition = "2018"
66
description = "Data types for Secure/Multipurpose Internet Mail Extensions"
@@ -9,6 +9,6 @@ license = "Apache-2.0/MIT"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
rasn = { path = "../..", version = "0.5.0" }
13-
rasn-cms = { path = "../cms", version = "0.5.0" }
14-
rasn-pkix = { path = "../pkix", version = "0.5.0" }
12+
rasn = { path = "../..", version = "0.6.0" }
13+
rasn-cms = { path = "../cms", version = "0.6.0" }
14+
rasn-pkix = { path = "../pkix", version = "0.6.0" }

standards/snmp/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "rasn-snmp"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2018"
55
description = "Data types for handling the Simple Network Management Protocol"
66
license = "Apache-2.0/MIT"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

1010
[dependencies]
11-
smi = { path = "../smi", package = "rasn-smi", version = "0.5.0" }
12-
rasn = { path = "../..", version = "0.5.0" }
11+
smi = { path = "../smi", package = "rasn-smi", version = "0.6.0" }
12+
rasn = { path = "../..", version = "0.6.0" }

0 commit comments

Comments
 (0)