[package]
edition = "2021"
rust-version = "1.76"
name = "stargaze"
version = "0.3.0"
authors = ["bkataru <baalateja.k@gmail.com>"]
build = false
exclude = [
".gitignore",
".github/*",
"target/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cache and search your GitHub stars from the terminal"
homepage = "https://crates.io/crates/stargaze"
documentation = "https://docs.rs/stargaze"
readme = "README.md"
keywords = [
"github",
"stars",
"cli",
"search",
"cache",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/bkataru/stargaze"
[lib]
name = "stargaze"
path = "src/lib.rs"
[[bin]]
name = "stargaze"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "live"
path = "tests/live.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[[test]]
name = "search"
path = "tests/search.rs"
[[test]]
name = "store"
path = "tests/store.rs"
[[bench]]
name = "workloads"
path = "benches/workloads.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.async-std]
version = "1.13.2"
features = ["attributes"]
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.directories]
version = "5"
[dependencies.fastembed]
version = "4"
[dependencies.futures]
version = "0.3.32"
[dependencies.fuzzy-matcher]
version = "0.3.7"
[dependencies.lru]
version = "0.12"
[dependencies.once_cell]
version = "1"
[dependencies.rayon]
version = "1.10"
[dependencies.redb]
version = "2.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.surf]
version = "2.3.2"
[dependencies.tiny_http]
version = "0.12"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
default-features = false
[dev-dependencies.tempfile]
version = "3.13"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true