-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
72 lines (63 loc) · 2.17 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 = "libflatterer"
version = "0.20.0"
authors = ["David Raznick <kindly@gmail.com>"]
edition = "2021"
description = "Lib to make JSON flatterer"
license = "MIT"
repository = "https://github.com/kindly/libflatterer"
homepage = "https://github.com/kindly/libflatterer"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
yajlish = { version = "0.4.0" }
#yajlish = { path = "../yajlish" }
serde_json = { version = "1", features = ["preserve_order"] }
itertools = "0.12.0"
csv = "1"
serde = { version = "1", features = ["derive"] }
smallvec = "1.6.1"
regex = "1"
slug = "0.1"
smartstring = { version = "1.0.0", features = ["serde"] }
snafu = { version = "0.7.0" }
indexmap = { version = "2.1.0", features = ["serde"] }
log = "0.4"
lazy_static = "1"
typed-builder = "0.18.0"
num_cpus = "1.13.1"
flate2 = "1.0.24"
csvs_convert = { version = "0.9.0", default-features = false, features = ["converters"] }
bytes = "1.4.0"
url = "2.3.1"
jsonpath-rust = "0.3.0"
# [target.'cfg(target_family = "wasm")'.dependencies]
# getrandom = {version="0.2", features = ["js"]}
# umya-spreadsheet = "0.7.2"
[target.'cfg(not(target_family = "wasm"))'.dependencies]
jsonref = "0.4"
object_store = { version = "0.9.0", features = ["aws", "http"] }
#object_store = { git = "https://github.com/apache/arrow-rs.git", features = ["aws", "http"]}
rust_xlsxwriter = { version = "0.79.0", features = ["constant_memory"] }
crossbeam-channel = "0.5"
tempfile = "3"
nanoid = "0.4.0"
tokio = { version = "1.37.0", features = ["rt"] }
csv-async = { version = "1.2.6", features = ["tokio"] }
futures-util = { version = "0.3.27" }
parquet = { version = "51.0.0", features = ["async"] }
tokio-util = { version = "0.7.7", features = ["io", "io-util"] }
futures = { version = "0.3.28" }
arrow-array = "51.0.0"
arrow-schema = "51.0.0"
async-compression = { version = "0.4.5", features = ["gzip", "tokio"] }
env_logger = "0.10.0"
[dev-dependencies]
insta = { version = "1.21.1", features = ["redactions", "yaml"] }
logtest = "2.0.0"
[profile.release]
debug = 1
[features]
default = ["parquet"]
parquet = ["csvs_convert/parquet"]
[package.metadata.docs.rs]
no-default-features = true