forked from dflemstr/rq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (58 loc) · 1.41 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
[package]
authors = ["David Flemström <[email protected]>"]
build = "build.rs"
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 = "0.10.4"
[badges]
[badges.travis-ci]
branch = "master"
repository = "dflemstr/rq"
[build-dependencies]
env_logger = "0.3.5"
regex = "0.2.1"
[dependencies]
ansi_term = "0.9.0"
docopt = "0.7.0"
dtoa = "0.4.1"
env_logger = "0.4.0"
error-chain = "0.9.0"
glob = "0.2.11"
itoa = "0.3.1"
log = "0.3.6"
nix = "0.7.0"
ordered-float = "0.4.0"
pest = "0.4.0"
protobuf = "1.0.24"
rmp = "0.8.2"
rmpv = "0.2.0"
rustc-serialize = "0.3.21"
serde = "0.9.7"
serde-hjson = "0.8.1"
serde-protobuf = "0.5.0"
serde_cbor = "0.5.0"
serde_json = "0.9.6"
serde_yaml = "0.6.0"
v8 = "0.9.1"
xdg-basedir = "1.0.0"
yaml-rust = "0.3.5"
[dependencies.serde-avro]
path = "serde-avro"
version = "0.5.0"
[dependencies.toml]
features = ["serde"]
version = "0.3.0"
[features]
shared = ["v8/shared"]
[profile]
[profile.release]
lto = true
[workspace]
members = ["serde-avro"]