cargo: version 0.26.0 and disable log filter

- The log filter feature may affect other crates
This commit is contained in:
Matt Bilker
2019-04-24 05:25:06 +00:00
parent 3d213abc84
commit ab3af97ffd

View File

@@ -1,6 +1,6 @@
[package]
name = "kbinxml"
version = "0.25.2"
version = "0.26.0"
authors = ["Matt Bilker <me@mbilker.us>"]
description = "An encoder/decoder for Konami's binary XML format used in many of their games."
edition = "2018"
@@ -13,15 +13,15 @@ encoding_rs = "0.8.6"
failure = "0.1.1"
indexmap = "1.0.1"
lazy_static = "1.0.0"
log = { version = "0.4.1", features = ["release_max_level_warn"] }
log = "0.4.6"
minidom = "0.10.0"
quick-xml = "0.13.1"
quick-xml = "0.13.3"
rustc-hex = "2.0.1"
clap = { version = "2.32.0", optional = true }
pretty_env_logger = { version = "0.3.0", optional = true }
serde = { version = "1.0.79", optional = true }
serde_bytes = { version = "0.10.4", optional = true }
serde_bytes = { version = "0.11.1", optional = true }
serde_derive = { version = "1.0.79", optional = true }
[features]