-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
54 lines (45 loc) · 1.31 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
48
49
50
51
52
53
54
[package]
name = "tibrv"
version = "0.6.0"
authors = ["Richard Bradfield <bradfier@fstab.me>"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["tibrv", "rendezvous", "messaging"]
repository = "https://github.com/bradfier/tibrv-rs"
homepage = "https://github.com/bradfier/tibrv-rs"
documentation = "https://bradfier.github.io/tibrv-rs/"
description = """
Bindings to the C library provided by TIBCO Rendezvous, a "high performance
message oriented middleware" commonly used in the financial industry.
"""
categories = ["api-bindings"]
[badges]
travis-ci = { repository = "bradfier/tibrv-rs" }
[dependencies]
chrono = "0.4"
failure = "^0.1"
failure_derive = "^0.1"
tibrv-sys = { version = "0.6.0", path = "tibrv-sys" }
tokio = { version = "^0.1.3", optional = true }
mio = { version = "0.6.14", optional = true }
futures = { version = "0.1.18", optional = true }
[features]
tibrv_8_2 = ["tibrv-sys/tibrv_8_2"]
tibrv_8_3 = ["tibrv_8_2", "tibrv-sys/tibrv_8_3"]
tibrv_8_4 = ["tibrv_8_3", "tibrv-sys/tibrv_8_4"]
async = ["tokio", "futures", "mio"]
[[example]]
name = "async_echo"
required-features = [ "async" ]
[[example]]
name = "echo"
[[example]]
name = "server"
[[example]]
name = "client"
[[example]]
name = "async_client"
required-features = [ "async" ]
[[example]]
name = "async_server"
required-features = [ "async" ]