-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathCargo.toml
35 lines (32 loc) · 1.02 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
[package]
name = "vortex-tui"
authors = { workspace = true }
categories = { workspace = true }
description = "a small but might tool for working with Vortex files"
edition = { workspace = true }
homepage = { workspace = true }
include = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
readme = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }
[dependencies]
arrow-array = { workspace = true }
async-trait = { workspace = true }
clap = { workspace = true, features = ["derive"] }
crossterm = { workspace = true }
futures-util = { workspace = true }
indicatif = { workspace = true }
parquet = { workspace = true, features = ["arrow", "async"] }
pin-project = { workspace = true }
ratatui = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread"] }
vortex = { workspace = true, features = ["tokio", "parquet"] }
vortex-layout = { workspace = true }
[lints]
workspace = true
[[bin]]
name = "vx"
path = "src/main.rs"