-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
72 lines (61 loc) · 2.52 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
64
65
66
67
68
69
70
71
72
[package]
name = "odbc2parquet"
version = "6.3.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.93"
stderrlog = "0.6.0"
log = "0.4.22"
chrono = "0.4.38"
atoi = "2.0.0"
num-traits = "0.2.19"
clap_complete = "4.5.38"
bytesize = "1.3.0"
io-arg = "0.2.1"
tempfile = "3.14.0"
[dependencies.clap]
version = "4.5.21"
features = ["derive", "env"]
[dependencies.parquet]
version = "53.2.0"
default-features = false
features = ["snap", "brotli", "flate2", "lz4", "zstd", "base64"]
# On windows we can not assume the default locale to be UTF-8, so we compile odbc-api with default
# features implying the use of UTF-16 for queries, connection strings and error messages. This
# should work on any system
[target.'cfg(target_os = "windows")'.dependencies]
odbc-api = { version = "9", features = ["odbc_version_3_5"] }
# On linux we assume use of a UTF-8 locale. So we set the narrow features implying that for queries,
# connection strings and error messages the driver and driver manager supply utf8-strings. This
# might also be slightly faster since no transcoding between UTF-8 and UTF-16 is required.
# Overall speed always depends on the driver, but it is reasonable to assume this is faster, more
# importantly, UTF-8 is likely to be more battled tested on these platforms, while UTF-16 is "only"
# required by the standard.
[target.'cfg(not(target_os = "windows"))'.dependencies]
odbc-api = { version = "9", features = ["narrow", "odbc_version_3_5"] }
[dev-dependencies]
assert_cmd = "2.0.16"
bytes = "1.8.0"
lazy_static = "1.5.0"
predicates = "3.1.2"
[profile.release]
# Panics should only be caused by logic errors and are considered bugs
panic = 'abort'
# Link time Optimization
lto = true