-
Notifications
You must be signed in to change notification settings - Fork 35
/
Cargo.toml
71 lines (64 loc) · 1.67 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
[package]
name = "frawk"
version = "0.4.8"
authors = ["Eli Rosenthal <ezr@cs.brown.edu>"]
edition = "2018"
description = "an efficient Awk-like language"
homepage = "https://github.com/ezrosent/frawk"
repository = "https://github.com/ezrosent/frawk"
readme = "README.md"
keywords = ["awk", "csv", "tsv"]
categories = ["command-line-utilities", "text-processing"]
license = "MIT OR Apache-2.0"
build = "build.rs"
[dependencies]
petgraph = "0.6"
smallvec = "1.7"
hashbrown = "0.11"
lazy_static = "1.4.0"
regex = "1.5"
regex-syntax = "0.6.25"
itoa = "1.0"
ryu = "1.0"
libc = "0.2"
tikv-jemallocator = { version = "0.4", optional = true }
rand = "0.8.4"
lalrpop-util = "0.19.8"
unicode-xid = "0.2.2"
llvm-sys = {version = "120", optional = true }
clap = "3.2.25"
crossbeam-channel = "0.5"
crossbeam = "0.8.1"
num_cpus = "1.13.1"
cfg-if = "1.0"
memchr = "2.4"
grep-cli = "0.1"
termcolor = "1.1"
itertools = "0.10"
assert_cmd = "2.0.3"
paste = "1.0"
cranelift = "0.93"
cranelift-codegen = "0.93"
cranelift-frontend = "0.93"
cranelift-module = "0.93"
cranelift-native = "0.93"
cranelift-jit = "0.93"
fast-float = "0.2"
bumpalo = { version = "3.11.1", features = ["collections"] }
target-lexicon = "0.12.2"
[dev-dependencies]
assert_cmd = "2.0.3"
tempfile = "3.4"
[features]
default = ["use_jemalloc", "allow_avx2", "llvm_backend", "unstable"]
use_jemalloc = ["tikv-jemallocator"]
# Certain features leverage the AVX2 instruction set, but AVX2 can often make
# the entire application slightly slower, even on chips that support it. For
# those cases, consider disabling allow_avx2.
allow_avx2 = []
llvm_backend = ["llvm-sys"]
unstable = []
[profile.release]
lto = "thin"
[build-dependencies]
lalrpop = "0.19.6"