-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (37 loc) · 1.18 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "libstrophe"
version = "0.19.3"
edition = "2021"
rust-version = "1.60"
description = "Rust ergonomic wrapper for libstrophe"
keywords = ["jabber", "xmpp", "libstrophe", "messaging", "im"]
categories = ["api-bindings", "network-programming"]
authors = ["Pro <[email protected]>"]
license = "LGPL-3.0"
documentation = "https://docs.rs/libstrophe"
repository = "https://github.com/twistedfall/libstrophe"
exclude = ["/.github", "/ci", "/tools", ".gitignore", "README.tpl", "release.toml", "rustfmt.toml"]
[badges]
maintenance = { status = "passively-maintained" }
[workspace]
members = ["libstrophe-sys-bindgen"]
[dependencies]
bitflags = "2"
log = { version = "0.4", optional = true }
num-traits = "0.2"
once_cell = "1"
scopeguard = "1"
sys = { package = "libstrophe-sys-bindgen", version = "7", path = "libstrophe-sys-bindgen" }
[dev-dependencies]
env_logger = "0.10"
matches = "0.1"
names = "0.14"
trybuild = "1"
[features]
default = ["rust-log", "libstrophe-0_12_0"]
buildtime_bindgen = ["sys/buildtime_bindgen"]
libstrophe-0_9_3 = []
libstrophe-0_10_0 = ["libstrophe-0_9_3"]
libstrophe-0_11_0 = ["libstrophe-0_10_0"]
libstrophe-0_12_0 = ["libstrophe-0_11_0"]
rust-log = ["log"]