-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (43 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
48 lines (43 loc) · 1.28 KB
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
[package]
name = "cdx"
version = "0.1.23"
authors = ["Andy Jewell <avjewe@gmail.com>"]
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Library and application for text file manipulation and command line data mining, a little like the gnu textutils"
homepage = "https://avjewe.github.io/cdxdoc/"
repository = "https://github.com/avjewe/cdx"
categories = [
"command-line-interface",
"command-line-utilities",
"development-tools",
]
keywords = ["cli", "terminal", "text", "sort", "join"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
flate2 = "1"
fs-err = "3"
memchr = "2"
tempfile = "3"
memmap2 = "0"
libc = "0"
unicode-width = "0"
unicode-truncate = "2"
rand = "0"
rand_distr = "0"
fastrand = "2"
aws-sdk-s3 = { version = "1", optional = true }
aws-config = { version = "1", optional = true }
clap = { version = "4", features = ["wrap_help", "unicode"] }
tokio = { version = "1", features = ["full"], optional = true }
bytes = { version = "1", optional = true }
base64 = "0"
binary-heap-plus = "0"
anyhow = "1"
itertools = "0.14.0"
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples=all"]
[features]
s3 = ["aws-config", "aws-sdk-s3", "tokio", "bytes"]
track = []