scansion-rs/Cargo.toml

26 lines
703 B
TOML

[package]
name = "scansion"
version = "0.1.0"
edition = "2021"
authors = ["Maxime “pep” Buquet <pep@bouah.net>"]
license = "MPL-2.0"
description = "Reimplementation of the Scansion project in Rust"
[dependencies]
nom = "7.1"
jid = { version = "*", features = [ "minidom" ] }
minidom = "*"
xmpp-parsers = "0.20"
nom_locate = "4.0.0"
rand = "0.8"
quote = { version = "1.0", optional = true }
proc-macro2 = { version = "1.0", optional = true }
[features]
quote = ["dep:quote", "dep:proc-macro2", "jid/quote"]
[patch.crates-io]
jid = { git = "https://gitlab.com/xmpp-rs/xmpp-rs" }
minidom = { git = "https://gitlab.com/xmpp-rs/xmpp-rs" }
xmpp-parsers = { git = "https://gitlab.com/xmpp-rs/xmpp-rs" }