-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 1.18 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
[package]
name = "feldera-rest-api"
description = "REST API bindings for Feldera"
keywords = ["incremental", "api", "rest", "database", "sql"]
publish = true
categories = ["database", "api-bindings", "network-programming"]
edition = { workspace = true }
version = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
authors = { workspace = true }
rust-version = { workspace = true }
readme = { workspace = true }
[dependencies]
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
chrono = { workspace = true, features = ["serde"] }
uuid = { workspace = true, features = ["serde", "v7"] }
reqwest = { workspace = true, features = ["json", "stream"] }
feldera-types = { workspace = true }
progenitor-client = { workspace = true }
rustversion.workspace = true
sentry = { workspace = true }
feldera-observability = { workspace = true }
[build-dependencies]
prettyplease = { workspace = true }
progenitor = { workspace = true }
serde_json = { workspace = true }
syn = { workspace = true }
[package.metadata.cargo-machete]
ignored = ["progenitor-client", "chrono", "prettytable-rs", "serde", "serde_json", "uuid"]