-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCargo.toml
63 lines (53 loc) · 1.81 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "odbc2parquet"
version = "7.0.1"
authors = ["Markus Klein"]
edition = "2021"
repository = "https://github.com/pacman82/odbc2parquet"
documentation = "https://docs.rs/odbc2parquet/"
license = "MIT"
# A short blurb about the package. This is not rendered in any format when
# uploaded to crates.io (aka this is not markdown).
description = "Query an ODBC data source and store the result in a Parquet file."
# This is a list of up to five keywords that describe this crate. Keywords
# are searchable on crates.io, and you may choose any words that would
# help someone find this crate.
keywords = ["odbc", "parquet", "sql"]
# This is a list of up to five categories where this crate would fit.
# Categories are a fixed list available at crates.io/category_slugs, and
# they must match exactly.
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.95"
stderrlog = "0.6.0"
log = "0.4.25"
chrono = "0.4.39"
atoi = "2.0.0"
num-traits = "0.2.19"
clap_complete = "4.5.44"
bytesize = "1.3.0"
io-arg = "0.2.1"
tempfile = "3.16.0"
# Using ODBC version 3.5 is avoiding warnings with drivers which only support 3.5 as oppossed to
# 3.8. Currently odbc2parquet does not need to use use any ODBC version 3.8 features.
[dependencies.odbc-api]
version = "10"
features = ["odbc_version_3_5"]
[dependencies.clap]
version = "4.5.27"
features = ["derive", "env"]
[dependencies.parquet]
version = "54.0.0"
default-features = false
features = ["snap", "brotli", "flate2", "lz4", "zstd", "base64"]
[dev-dependencies]
assert_cmd = "2.0.16"
bytes = "1.9.0"
lazy_static = "1.5.0"
predicates = "3.1.3"
[profile.release]
# Panics should only be caused by logic errors and are considered bugs
panic = 'abort'
# Link time Optimization
lto = true