Version 1.0.1

Publishing failed for strong-xml 0.6.1, this just bumps it to 0.6.2 to fix that.
This commit is contained in:
Bauke 2021-03-22 14:04:25 +01:00
parent a93cf7abd6
commit d50c5ca4b6
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
3 changed files with 10 additions and 10 deletions

12
Cargo.lock generated
View File

@ -116,7 +116,7 @@ checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
[[package]]
name = "opml"
version = "1.0.0"
version = "1.0.1"
dependencies = [
"regex",
"serde",
@ -126,7 +126,7 @@ dependencies = [
[[package]]
name = "opml_cli"
version = "1.0.0"
version = "1.0.1"
dependencies = [
"assert_cmd",
"clap",
@ -236,9 +236,9 @@ dependencies = [
[[package]]
name = "strong-xml"
version = "0.6.1"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da0e355b33893aa1b6d2f29110e729609c87a4241817a3e53ffba4c31421b1b1"
checksum = "73d7a5a280d6097649ea2254eb65d38e81f1752fa47ea69d5fa2179470c8bf4c"
dependencies = [
"jetscii",
"lazy_static",
@ -249,9 +249,9 @@ dependencies = [
[[package]]
name = "strong-xml-derive"
version = "0.6.1"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9053670189294a3fa7d7379a58b07ab0d0608debe80f5a16d31e2faa6e13b69"
checksum = "2c3fa5e97f5557b119549b559e37bd3990528534110d0fdfa6c7e9b4c9a9d75a"
dependencies = [
"proc-macro2",
"quote",

View File

@ -4,7 +4,7 @@
name = "opml"
description = "An OPML parser for Rust."
authors = ["Holllo <helllo@holllo.cc>"]
version = "1.0.0"
version = "1.0.1"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Holllo/opml"
readme = "../README.md"
@ -17,5 +17,5 @@ path = "source/lib.rs"
[dependencies]
regex = "1.3"
serde = { version = "1.0", features = ["derive"] }
strong-xml = "0.6.1"
strong-xml = "0.6.2"
thiserror = "1.0.24"

View File

@ -3,7 +3,7 @@
[package]
name = "opml_cli"
description = "An OPML parser for the command-line."
version = "1.0.0"
version = "1.0.1"
authors = ["Holllo <helllo@holllo.cc>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Holllo/opml"
@ -17,7 +17,7 @@ path = "source/main.rs"
[dependencies]
clap = "2.33"
opml = { path = "../opml_api", version = "1.0" }
opml = { path = "../opml_api", version = "1.0.1" }
serde_json = "1.0"
[dependencies.serde]