-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
44 lines (36 loc) · 1004 Bytes
/
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
43
[package]
name = "xmpp-rs"
version = "0.1.3"
description = """
xmpp-rs is an implementation of the Extensible Messaging and Presence Protocol (XMPP).
Based on tokio-rs and futures-rs. It's goal is to be fully tested and usable.
"""
edition = "2018"
license = "MPL-2.0"
documentation = "https://docs.rs/xmpp-rs"
authors = ["Freyskeyd <[email protected]>"]
repository = "https://github.com/Freyskeyd/xmpp-rs"
readme = "README.md"
keywords = ["xmpp", "tokio", "jabber", "IM", "instant-messaging"]
categories = ["network-programming"]
exclude = [
"derive",
]
[badges]
travis-ci = { repository = "freyskeyd/xmpp-rs", branch = "master" }
[lib]
name = "xmpp"
path = "src/lib.rs"
[dev-dependencies]
env_logger = "0"
futures = "0.1"
log = "0"
tokio-core = "0.1"
xml-rs = "*"
circular = "*"
[dependencies]
xmpp-credentials = { path = "credentials" }
xmpp-proto = { path = "proto" }
xmpp-server = { path = "server" }
[workspace]
members = ["proto", "credentials/", "server/", "examples/server"]