-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
47 lines (42 loc) · 1.48 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
43
44
45
46
47
[package]
name = "saltyrtc-client"
version = "0.9.0"
authors = ["Danilo Bargen <[email protected]>"]
documentation = "https://docs.rs/saltyrtc-client"
repository = "https://github.com/saltyrtc/saltyrtc-client-rs"
license = "MIT OR Apache-2.0"
description = "Asynchronous SaltyRTC client implementation for Rust."
readme = "README.md"
keywords = ["saltyrtc", "end-to-end", "e2e", "signaling"]
categories = ["network-programming"]
edition = "2018"
[badges]
circle-ci = { repository = "saltyrtc/saltyrtc-client-rs", branch = "master" }
maintenance = { status = "passively-maintained" }
[dependencies]
byteorder = "1.1"
crypto_box = { version = "0.7.1", features = ["serde"] }
data-encoding = "2.1"
failure = "0.1"
futures = "0.1.0" # Make sure to use same version as websocket
log = "0.4"
mopa = "0.2"
native-tls = "0.2"
rand_core = { version = "0.6", features = ["getrandom"] }
rmp-serde = "0.13"
rmpv = { version = "0.4", features = ["with-serde"] }
serde = { version = "1", features = ["derive"] }
tokio-core = "0.1"
tokio-timer = "0.1"
websocket = { version = "0.26", default-features = false, features = ["async", "async-ssl"] }
xsalsa20poly1305 = "0.8"
[dev-dependencies]
anyhow = "1"
clap = { version = "3", features = ["std", "derive"], default-features = false }
cursive = "0.20"
log4rs = "1.1"
[features]
default = []
msgpack-debugging = []
[patch.crates-io]
traitobject = { git = "https://github.com/philip-peterson/destructure_traitobject", rev = "d49b0af9087b3b7848d19d5baae43948ebc7fb9d" }