-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
82 lines (77 loc) · 1.82 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
73
74
75
76
77
78
79
80
81
82
[workspace]
resolver = "2"
members = [
"src/filterx",
"src/filterx_core",
"src/filterx_engine",
"src/filterx_info",
"src/filterx_source",
]
[workspace.package]
authors = ["dwpeng"]
version = "0.3.6"
edition = "2021"
description = "A command line tool to filter data by using python-like syntax"
license = "MIT"
repository = "https://github.com/dwpeng/filterx"
homepage = "https://github.com/dwpeng/filterx"
exclude = ["spec/", "docs/"]
readme = "README.md"
[workspace.dependencies]
filterx = { path = "src/filterx", version = "0.3.6" }
filterx_core = { path = "src/filterx_core", version = "0.3.6" }
filterx_engine = { path = "src/filterx_engine", version = "0.3.6" }
filterx_source = { path = "src/filterx_source", version = "0.3.6" }
filterx_info = { path = "src/filterx_info", version = "0.3.6" }
anyhow = "1.0.94"
clap = { version = "4.5.29", features = ["derive"] }
polars = { version = "0.46.0", default-features = false, features = [
"lazy",
"csv",
"strings",
"string_reverse",
"concat_str",
"regex",
"semi_anti_join",
"streaming",
"cum_agg",
"avx512",
"dtype-u8",
"dtype-u16",
"dtype-i16",
"dtype-i8",
"abs",
"decompress",
"describe",
"fmt",
"fmt_no_tty",
"dynamic_group_by",
"cse",
"fused",
"rows",
"simd",
"sql",
"is_in",
] }
polars-arrow = { version = "0.46.0" }
rustpython-parser = { version = "0.4.0" }
thiserror = "2.0.6"
flate2 = { version = "1.0.35", features = ["zlib-rs"] }
gzp = { version = "0.11.3", default-features = false, features = [
"deflate_rust",
] }
regex = "1.11.1"
colored = "3.0.0"
lazy_static = "1.5.0"
memchr = "2.7.4"
markdown = "0.3.0"
num_cpus = "1.16.0"
strsim = "0.11.1"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = "z"
strip = true
lto = true
codegen-units = 1
panic = "abort"