forked from alrpal/TinyETL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (56 loc) · 2.06 KB
/
Cargo.toml
File metadata and controls
60 lines (56 loc) · 2.06 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
56
57
58
59
60
[package]
name = "tinyetl"
version = "0.10.0"
edition = "2021"
rust-version = "1.70"
resolver = "2"
# Add these required fields:
authors = ["Alex Nemeth <alex@alexnemethdata.com>"]
description = "Fast, zero-config ETL in a single binary for transforming data between formats and databases"
license = "Apache-2.0" # You have an Apache 2.0 LICENSE file
repository = "https://github.com/alrpal/TinyETL"
homepage = "https://tinyetl.com"
documentation = "https://tinyetl.com/docs"
readme = "README.md"
keywords = ["etl", "data", "database", "csv", "parquet"] # Max 5 keywords
categories = ["database", "command-line-utilities"] # See crates.io categories
[dependencies]
clap = { version = "4.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "sqlite", "postgres", "mysql", "chrono"] }
csv = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
regex = "1.10"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
indicatif = "0.17"
chrono = { version = "0.4", features = ["serde"] }
async-trait = "0.1"
thiserror = "1.0"
arrow = { version = "57.0", features = ["csv", "json"] }
parquet = { version = "57.0", features = ["arrow", "async"] }
mlua = { version = "0.8", features = ["lua54", "vendored"] }
url = "2.4"
reqwest = { version = "0.11", features = ["json", "native-tls"] }
tempfile = "3.8"
apache-avro = "0.16"
rust_decimal = { version = "1.35", features = ["serde", "db-postgres", "db-tokio-postgres"] }
tiberius = { version = "0.12", features = ["sql-browser-async-std", "chrono"] }
tokio-util = { version = "0.7", features = ["compat"] }
futures-util = "0.3"
uuid = { version = "1.0", features = ["v4"] }
base64 = "0.21"
duckdb = { version = "1.4.1", features = ["bundled"] }
odbc-api = { version = "8.0", features = ["narrow"] }
hex = "0.4"
[dev-dependencies]
tempfile = "3.8"
tokio-test = "0.4"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true # Remove debug symbols for smaller binaries