[package]
edition = "2021"
rust-version = "1.94.1"
name = "seagrep-query"
version = "0.6.1"
authors = ["seagrep contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Indexed regex search for private S3 buckets"
homepage = "https://github.com/TalkingComputers/seagrep"
documentation = "https://docs.rs/seagrep"
readme = false
keywords = [
"s3",
"grep",
"regex",
"search",
"trigram",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TalkingComputers/seagrep"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "seagrep_query"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.regex-syntax]
version = "0.8"
[dependencies.seagrep-core]
version = "0.6.1"
[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