libstrophe 0.17.0

Rust ergonomic wrapper for libstrophe
Documentation
1
2
3
4
5
6
7
8
use libstrophe::Stanza;

fn main() {
	let _a = {
		let stanza = Stanza::new();
		stanza.get_first_child()
	};
}