[package]
edition = "2021"
rust-version = "1.88"
name = "holys3"
version = "0.5.1"
authors = ["holys3 contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Indexed regex search for local files and private S3 buckets"
homepage = "https://github.com/TalkingComputers/holys3"
documentation = "https://docs.rs/holys3"
readme = "README.md"
keywords = [
"s3",
"grep",
"regex",
"search",
"trigram",
]
categories = [
"command-line-utilities",
"text-processing",
"filesystem",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TalkingComputers/holys3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[[bin]]
name = "holys3"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "live_index"
path = "tests/live_index.rs"
[[test]]
name = "watch"
path = "tests/watch.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22.1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ctrlc]
version = "3.5.2"
features = ["termination"]
[dependencies.globset]
version = "0.4.18"
[dependencies.holys3-core]
version = "0.5.1"
[dependencies.holys3-index]
version = "0.5.1"
[dependencies.holys3-s3]
version = "0.5.1"
[dependencies.mimalloc]
version = "0.1.52"
features = ["no_thp"]
[dependencies.regex]
version = "1"
[dependencies.regex-syntax]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.termcolor]
version = "1.4.1"
[dependencies.time]
version = "0.3"
features = ["formatting"]
[dev-dependencies.assert_cmd]
version = "2.2.2"
[dev-dependencies.holys3-core]
version = "0.5.1"
features = ["testutil"]
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.tempfile]
version = "3.27.0"
[lints.clippy]
dbg_macro = "warn"
doc_markdown = "warn"
inefficient_to_string = "warn"
semicolon_if_nothing_returned = "warn"
str_to_string = "warn"
todo = "warn"
[lints.rust]
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_qualifications = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1