forked from pravega/pravega-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (42 loc) · 1.35 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 = "pravega"
version = "0.3.8"
edition = "2018"
categories = ["network-programming"]
keywords = ["streaming", "client", "pravega"]
readme = "README.md"
repository = "https://github.com/pravega/pravega-client-python"
license = "Apache-2.0"
description = "Pravega client"
authors = ["Pravega Community"]
[lib]
name = "pravega_client"
crate-type = ["cdylib"]
[features]
default = ["python_binding", "extension-module"]
javascript_binding = ["wasm-bindgen"]
python_binding = ["pyo3", "pyo3-asyncio"]
extension-module = ["pyo3/extension-module"]
#Run tests for bindings using command cargo test --no-default-features
[dependencies]
tracing = "0.1"
tracing-futures = "0.2"
tracing-subscriber = "0.2"
pravega-client = {version = "0.3"}
pravega-client-shared = {version = "0.3"}
pravega-controller-client = {version = "0.3"}
pravega-wire-protocol = {version = "0.3"}
pravega-client-retry = {version = "0.3"}
pravega-connection-pool = {version = "0.3"}
pravega-client-config = {version = "0.3"}
tokio = { version = "1", features = ["full"] }
lazy_static = "1.4"
uuid = {version = "0.8", features = ["v4"]}
futures = "0.3"
derive-new = "0.5"
#Python bindings
pyo3 = { version = "0.14.5" ,optional = true }
pyo3-asyncio = { version = "0.14", features = ["tokio-runtime"], optional = true }
#WASM bindings
wasm-bindgen = { version = "0.2.63", optional = true }
cfg-if = "1.0.0"