-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
56 lines (47 loc) · 1.69 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
[package]
name = "mqtt-source"
version = "0.0.0"
edition = "2021"
publish = false
license = "Apache 2.0"
authors = ["Fluvio Contributors <[email protected]>"]
description = "Fluvio MQTT source connector"
[dependencies]
async-trait = { workspace = true }
futures = { version = "0.3", default-features = false}
anyhow = { workspace = true }
async-std = { workspace = true, features = ["attributes", "tokio1"]}
serde = {workspace = true, features = ["derive"]}
serde_json = { workspace = true, features = ["preserve_order"] }
url = { version = "2.5", default-features = false }
thiserror = { version = "1.0", default-features = false }
uuid = { version = "1.11", features = ["v4"] }
rumqttc = { workspace = true, features = ["url", "websocket"] }
rustls = { workspace = true }
rustls-native-certs = { version = "0.7" }
fluvio = { workspace = true }
fluvio-connector-common = { workspace = true, features = ["derive"] }
[profile.release-lto]
inherits = "release"
lto = true
[workspace]
members = [
"integration-tests",
".",
]
default-members = [
"."
]
[workspace.dependencies]
anyhow = { version = "1.0.86" }
async-trait = { version = "0.1", default-features = false}
async-std = { version = "1.13", default-features = false }
serde_json = { version = "1.0", default-features = false }
serde = {version = "1.0", default-features = false }
rumqttc = { version = "0.24" }
rustls = { version = "0.22" }
fluvio = { git = "https://github.com/infinyon/fluvio", tag = "v0.12.0" }
fluvio-connector-common = { git = "https://github.com/infinyon/fluvio", tag = "v0.12.0", features = ["derive"] }
fluvio-future = { version = "0.7.0", default-features = false }
# transitive version selection
bytes = { version = "1.8.0" }