-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 915 Bytes
/
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
[package]
name = "verticareader"
version = "2.1.0"
authors = ["Joey Gibson <[email protected]>"]
edition = "2018"
description = "A program to read Vertica native binary files and convert them to CSV."
readme = "README.md"
repository = "https://github.com/joeygibson/verticareader"
license = "MIT"
keywords = ["vertica", "database", "csv", "binary"]
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4", features = ["color", "derive"] }
chrono = "0.4"
csv = "1.1"
regex = "1.6"
lazy_static = "1.4.0"
serde_json = "1.0"
flate2 = "1.0"
anyhow = "1.0"
[dependencies.uuid]
version = "1.1.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]