-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (42 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
45 lines (42 loc) · 1.45 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
[package]
name = "feldera-types"
description = "Public API types for Feldera"
categories = ["database", "api-bindings", "network-programming"]
readme = "README.md"
keywords = { workspace = true }
edition = "2024"
version = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
authors = { workspace = true }
rust-version = { workspace = true }
[features]
testing = ["proptest", "proptest-derive", "feldera-ir/testing"]
[dependencies]
arrow-schema = { workspace = true, features = ["serde"] }
serde = { workspace = true, features = ["derive", "rc"] }
serde_yaml = { workspace = true }
serde_json = { workspace = true, features = ["raw_value"] }
anyhow = { workspace = true, features = ["backtrace"] }
libc = { workspace = true }
log = { workspace = true }
utoipa = { workspace = true }
proptest = { workspace = true, optional = true }
proptest-derive = { workspace = true, optional = true }
actix-web = { workspace = true }
enum-map = { workspace = true }
erased-serde = { workspace = true }
uuid = { workspace = true, features = ["v7"] }
thiserror = { workspace = true }
regex = { workspace = true }
chrono = { workspace = true, features = ["serde"] }
feldera-ir = { workspace = true }
async-nats = { workspace = true }
time = { workspace = true }
bytemuck = { workspace = true }
clap = { workspace = true }
url = { workspace = true }
[dev-dependencies]
csv = { workspace = true }
tempfile = { workspace = true }