xso: Bump version to 0.1.0
This commit is contained in:
parent
62b2966b9d
commit
ab35c234c8
5 changed files with 9 additions and 9 deletions
|
|
@ -24,7 +24,7 @@ chrono = { version = "0.4.5", default-features = false, features = ["std"] }
|
||||||
# same repository dependencies
|
# same repository dependencies
|
||||||
jid = { version = "0.11", features = ["minidom"] }
|
jid = { version = "0.11", features = ["minidom"] }
|
||||||
minidom = { version = "0.16" }
|
minidom = { version = "0.16" }
|
||||||
xso = { version = "0.0.2", features = ["macros", "minidom", "panicking-into-impl", "jid", "base64"] }
|
xso = { version = "^0.1", features = ["macros", "minidom", "panicking-into-impl", "jid", "base64"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
# Build xmpp-parsers to make components instead of clients.
|
# Build xmpp-parsers to make components instead of clients.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "xso_proc"
|
name = "xso_proc"
|
||||||
version = "0.0.2"
|
version = "0.1.0"
|
||||||
authors = [
|
authors = [
|
||||||
"Jonas Schäfer <jonas@zombofant.net>",
|
"Jonas Schäfer <jonas@zombofant.net>",
|
||||||
]
|
]
|
||||||
|
|
@ -18,7 +18,7 @@ proc-macro = true
|
||||||
quote = "^1"
|
quote = "^1"
|
||||||
syn = { version = "^2", features = ["full", "extra-traits"] }
|
syn = { version = "^2", features = ["full", "extra-traits"] }
|
||||||
proc-macro2 = "^1"
|
proc-macro2 = "^1"
|
||||||
rxml_validation = { version = "0.11.0", default-features = false, features = ["std"] }
|
rxml_validation = { version = "0.11", default-features = false, features = ["std"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
panicking-into-impl = ["minidom"]
|
panicking-into-impl = ["minidom"]
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
Version xxx:
|
Version 0.1.0:
|
||||||
0000-00-00 Jonas Schäfer <jonas@zombofant.net>
|
2024-07-25 Jonas Schäfer <jonas@zombofant.net>
|
||||||
* Initial release of this crate
|
* Initial release of this crate
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "xso"
|
name = "xso"
|
||||||
version = "0.0.2"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "XML Streamed Objects: similar to serde, but XML-native."
|
description = "XML Streamed Objects: similar to serde, but XML-native."
|
||||||
homepage = "https://xmpp.rs"
|
homepage = "https://xmpp.rs"
|
||||||
|
|
@ -12,7 +12,7 @@ license = "MPL-2.0"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rxml = { version = "0.11.1", default-features = false }
|
rxml = { version = "0.11.1", default-features = false }
|
||||||
minidom = { version = "^0.16" }
|
minidom = { version = "^0.16" }
|
||||||
xso_proc = { version = "0.0.2", optional = true }
|
xso_proc = { version = "0.1", optional = true }
|
||||||
|
|
||||||
# optional dependencies to provide text conversion to/from types from/using
|
# optional dependencies to provide text conversion to/from types from/using
|
||||||
# these crates
|
# these crates
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
Version xxx:
|
Version 0.1.0:
|
||||||
0000-00-00 Jonas Schäfer <jonas@zombofant.net>
|
2024-07-25 Jonas Schäfer <jonas@zombofant.net>
|
||||||
* Initial release of this crate
|
* Initial release of this crate
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue