-
Notifications
You must be signed in to change notification settings - Fork 57
/
Cargo.toml
63 lines (56 loc) · 1.38 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]
authors = ["David Flemström <david.flemstrom@gmail.com>"]
categories = ["command-line-interface", "command-line-utilities", "development-tools", "text-processing", "value-formatting"]
description = "A tool for doing record analysis and transformation"
documentation = "https://github.com/dflemstr/rq/blob/master/README.md"
homepage = "https://github.com/dflemstr/rq"
keywords = ["command-line-tool", "cli", "javascript", "record", "query"]
license = "Apache-2.0"
name = "record-query"
readme = "README.md"
repository = "https://github.com/dflemstr/rq"
version = "1.0.4"
edition = "2018"
[badges]
[badges.travis-ci]
branch = "master"
repository = "dflemstr/rq"
[build-dependencies]
built = "0.5.2"
env_logger = "0.9.3"
regex = "1.8.1"
vergen = "7.5.1"
[dependencies]
ansi_term = "0.12.1"
atty = "0.2.14"
csv = "1.2.1"
directories = "4.0.1"
dtoa = "0.4.8"
env_logger = "0.7.1"
failure = "0.1.8"
glob = "0.3.1"
itoa = "0.4.8"
log = "0.4.17"
nix = "0.24.3"
ordered-float = "3.6.0"
pest = "2.5.7"
protobuf = "2.28.0"
rmp = "0.8.11"
rmpv = "1.0.0"
serde = "1.0.160"
serde-hjson = "0.9.1"
serde-protobuf = "0.8.2"
serde_cbor = "0.11.2"
serde_json = "1.0.96"
serde_yaml = "0.9.21"
structopt = "0.3.26"
yaml-rust = "0.4.5"
[dependencies.avro-rs]
version = "0.6.6"
features = ["snappy"]
[dependencies.toml]
version = "0.6.0"
features = ["preserve_order"]
[profile.release]
lto = true
codegen-units = 1