-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (52 loc) · 1.98 KB
/
Cargo.toml
File metadata and controls
55 lines (52 loc) · 1.98 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
47
48
49
50
51
52
53
54
55
[package]
name = "fda"
description = "A CLI tool for interacting with Feldera"
readme = "README.md"
include = ["bench_openapi.json", "/src", "build.rs", "COPYRIGHT", "README.md"]
publish = true
edition = "2024"
version = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
authors = { workspace = true }
rust-version = { workspace = true }
[dependencies]
log = { workspace = true }
clap = { workspace = true, features = ["color"] }
clap_complete = { workspace = true, features = ["unstable-dynamic"] }
progenitor-client = { workspace = true }
reqwest = { workspace = true, features = ["json", "stream"] }
reqwest-websocket = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "io-std", "process"] }
feldera-types = { workspace = true }
feldera-rest-api = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
tracing-log = { workspace = true }
sentry = { workspace = true }
feldera-observability = { workspace = true }
tabled = { workspace = true, features = ["macros", "ansi"] }
json_to_table = { workspace = true }
rustyline = { workspace = true, features = ["with-file-history"] }
directories = { workspace = true }
futures-util = { workspace = true }
futures = { workspace = true }
tokio-util = { workspace = true }
tempfile = { workspace = true }
rmpv = { workspace = true, features = ["with-serde"] }
arrow = { workspace = true, features = ["ipc", "prettyprint"] }
serde = { workspace = true, features = ["derive"] }
uuid = { workspace = true, features = ["serde", "v4"] }
chrono = { workspace = true, features = ["serde"] }
anyhow = { workspace = true }
ordered-float.workspace = true
itertools.workspace = true
rustversion.workspace = true
zip.workspace = true
[build-dependencies]
prettyplease = { workspace = true }
progenitor = { workspace = true }
serde_json = { workspace = true }
syn = { workspace = true }