-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
50 lines (45 loc) · 1.56 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
[package]
name = "_fluvio_python"
version = "0.17.0"
edition = "2021"
authors = ["Fluvio Contributors <[email protected]>"]
[lib]
crate-type = ["cdylib"]
name = "_fluvio_python"
[build-dependencies]
env_logger = "^0.11"
log = "^0.4.17"
[dependencies]
anyhow = "1.0"
async-h1 = "2.3.3"
async-lock = "3.3.0"
async-std = "1.6.5"
aws-lc-rs = { version = "1", features = ["bindgen"] }
cc = "=1.1.15"
dirs = "5.0.1"
futures = "0.3.30"
hex = "0.4.2"
http-types = "2.6.0"
md-5 = "0.10.0"
pyo3 = { version = "0.20.2", features = ["extension-module"] }
pyo3-asyncio = { version = "0.20.0", features = ["testing", "attributes", "async-std-runtime"] }
rpassword = "7.3.1"
serde = "1.0.117"
serde_json = "1.0.59"
serde_urlencoded = "0.7.1"
thiserror = "1.0.21"
tokio = { version = "1.36.0", default-features = false, features = ["macros"] }
toml = "0.8.1"
tracing = "0.1.37"
url = "2.5.0"
webbrowser = "1.0.0"
fluvio-future = { version = "0.7.0", features = ["task", "io", "native_tls", "subscriber"] }
fluvio = { features = ["admin", "rustls"], git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.1" }
fluvio-protocol = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.1" }
fluvio-types = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.1" }
fluvio-sc-schema = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.1" }
fluvio-controlplane-metadata = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.1" }
# transitive version selection
parking_lot = "0.12.3"
bytes = { version = "1.8.0" }
futures-util = { version = "0.3.6", default-features = false }