forked from pravega/pravega-client-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
121 lines (112 loc) · 3.09 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[package]
name = "pravega-client"
# When releasing to crates.io:
# - Remove path dependencies
# - Update doc url
# - Cargo.toml
# - README.md
# - Update CHANGELOG.md.
# - Create git tag.
version = "0.3.6"
edition = "2018"
categories = ["network-programming"]
keywords = ["streaming", "client", "pravega"]
readme = "README.md"
documentation = "https://docs.rs/pravega-client/0.3.6/"
homepage = "https://www.pravega.io/"
repository = "https://github.com/pravega/pravega-client-rust"
license = "Apache-2.0"
description = "A Rust client for Pravega. (Pravega.io)"
authors = ["Tom Kaitchuck <[email protected]>", "Wenqi Mou <[email protected]>",
"Sandeep Shridhar <[email protected]>", "Wenxiao Zhang <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"controller-client",
"shared",
"wire_protocol",
"retry",
"integration_test",
"connection_pool",
"channel",
"python",
"auth",
"config",
"examples",
"macros",
"pravegactl",
"nodejs",
"golang"
]
[dependencies]
pravega-client-shared = { path = "./shared", version = "0.3"}
pravega-controller-client = { path = "./controller-client", version = "0.3"}
pravega-wire-protocol = { path = "./wire_protocol", version = "0.3"}
pravega-client-retry = {path = "./retry", version = "0.3"}
pravega-connection-pool = {path = "./connection_pool", version = "0.3" }
pravega-client-channel = {path = "./channel", version = "0.3"}
pravega-client-auth = {path = "./auth", version = "0.3"}
pravega-client-config = {path = "./config", version = "0.3"}
pravega-client-macros = {path = "./macros", version = "0.3"}
async-trait = "0.1"
futures = "0.3"
snafu = "0.6"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-futures = "0.2"
tracing-subscriber = "0.2"
rand = "0.7"
uuid = {version = "0.8", features = ["v4"]}
serde = { version = "1.0", features = ["derive"] }
chrono = "0.4"
clap = {version = "2.33", optional = true}
structopt = {version = "0.3", optional = true}
derive-new = "0.5"
futures-intrusive = "0.3"
async-stream = "0.2"
serde_cbor = "0.11"
pcg_rand = "0.11"
bytes = "0.5"
im = "15"
tokio-util = "0.3"
metrics = "0.15.1"
metrics-exporter-prometheus = "0.4.0"
enum-iterator = "0.6"
cfg-if = "1.0.0"
ahash = "0.8.6"
bincode2 = "2.0.1"
lazy_static = "1.4"
byteorder = "1.3"
tiny-keccak = { version = "2.0.0", features = ["shake"] }
futures-util = "0.3.16"
[dev-dependencies]
pravega-client-integration-test = { path = "integration_test" }
mockall = "0.8"
ordered-float = { version= "2.7", features = ["serde"]}
criterion = "0.3"
byteorder = "1.3"
lazy_static = "1.4"
[[bin]]
name = "server-cli"
path = "src/cli.rs"
#Work around for issue https://github.com/rust-lang/cargo/issues/1982
required-features = ["cli"]
[features]
default = []
cli = []
integration-test = []
[[bench]]
name = "benchmark"
harness = false
[profile.release]
opt-level = 3
debug = false
lto = 'fat'
debug-assertions = false
codegen-units = 1
[profile.bench]
opt-level = 3
debug = true
debug-assertions = false
lto = "thin"
codegen-units = 1