-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (43 loc) · 1.55 KB
/
Cargo.toml
File metadata and controls
46 lines (43 loc) · 1.55 KB
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
[package]
name = "feldera-adapterlib"
description = "Connector support for the Feldera streaming engine"
categories = ["parsing"]
authors = { workspace = true }
version = { workspace = true }
license = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
keywords = { workspace = true }
readme = { workspace = true }
rust-version = { workspace = true }
edition = "2024"
publish = true
[features]
with-avro = ["apache-avro"]
[dependencies]
feldera-types = { workspace = true }
feldera-sqllib = { workspace = true }
dbsp = { workspace = true }
anyhow = { workspace = true, features = ["backtrace"] }
serde_yaml = { workspace = true }
actix-web = { workspace = true, features = ["cookies", "macros", "compress-gzip", "compress-brotli"] }
erased-serde = { workspace = true }
dyn-clone = { workspace = true }
arrow = { workspace = true, features = ["chrono-tz"] }
apache-avro = { workspace = true, optional = true }
serde_arrow = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["raw_value"] }
rmp-serde = { workspace = true }
rmpv = { workspace = true, features = ["with-serde"] }
bytemuck = { workspace = true }
num-traits = { workspace = true }
num-derive = { workspace = true }
tokio = { workspace = true, features = ["sync"] }
xxhash-rust = { workspace = true, features = ["xxh3"] }
datafusion = { workspace = true }
thiserror = { workspace = true }
serde_json_path_to_error = { workspace = true }
chrono = { workspace = true }
[package.metadata.cargo-machete]
ignored = ["num-traits"]