[package]
edition = "2021"
name = "yek"
version = "0.25.4"
authors = ["Mohsen Azimi <me@azimi.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tool to serialize a repository into chunks of text files"
readme = "README.md"
keywords = [
"git",
"repository",
"serialization",
"text",
"chunks",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/mohsen1/yek"
[lib]
name = "yek"
path = "src/lib.rs"
[[bin]]
name = "yek"
path = "src/main.rs"
[[test]]
name = "category_test"
path = "tests/category_test.rs"
[[test]]
name = "config_test"
path = "tests/config_test.rs"
[[test]]
name = "config_unignore_test"
path = "tests/config_unignore_test.rs"
[[test]]
name = "e2e_test"
path = "tests/e2e_test.rs"
[[test]]
name = "error_test"
path = "tests/error_test.rs"
[[test]]
name = "extra_tests"
path = "tests/extra_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "lib_test"
path = "tests/lib_test.rs"
[[test]]
name = "line_numbers_test"
path = "tests/line_numbers_test.rs"
[[test]]
name = "main_test"
path = "tests/main_test.rs"
[[test]]
name = "misc_test"
path = "tests/misc_test.rs"
[[test]]
name = "models_test"
path = "tests/models_test.rs"
[[test]]
name = "parallel_test"
path = "tests/parallel_test.rs"
[[test]]
name = "pipeline_test"
path = "tests/pipeline_test.rs"
[[test]]
name = "priority_test"
path = "tests/priority_test.rs"
[[test]]
name = "repository_test"
path = "tests/repository_test.rs"
[[test]]
name = "stdin_test"
path = "tests/stdin_test.rs"
[[test]]
name = "symlink_test"
path = "tests/symlink_test.rs"
[[test]]
name = "tree_config_test"
path = "tests/tree_config_test.rs"
[[test]]
name = "tree_test"
path = "tests/tree_test.rs"
[[bench]]
name = "serialization"
path = "benches/serialization.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.atty]
version = "0.2.14"
[dependencies.bytesize]
version = "2.0.1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap-config-file]
version = "0.6.0"
[dependencies.config]
version = "0.15.11"
[dependencies.content_inspector]
version = "0.2.4"
[dependencies.crossbeam]
version = "0.8"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.git2]
version = "0.18.2"
features = [
"vendored-openssl",
"https",
]
[dependencies.glob]
version = "0.3.2"
[dependencies.ignore]
version = "0.4"
[dependencies.indicatif]
version = "0.17"
[dependencies.normalize-path]
version = "0.2.1"
[dependencies.num_cpus]
version = "1.16"
[dependencies.path-slash]
version = "0.2.1"
[dependencies.rayon]
version = "1.8"
[dependencies.regex]
version = "1.12.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_derive]
version = "1.0"
[dependencies.serde_json]
version = "1.0.145"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.sha2]
version = "0.10"
[dependencies.tiktoken-rs]
version = "0.7.0"
[dependencies.time]
version = "0.3"
[dependencies.toml]
version = "0.9"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.walkdir]
version = "2.4"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.chrono]
version = "0.4"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.grcov]
version = "0.10.5"
[dev-dependencies.predicates]
version = "3.0"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.tempfile]
version = "3.19"
[profile.coverage]
opt-level = 0
lto = false
codegen-units = 1
debug = 2
debug-assertions = true
rpath = false
panic = "unwind"
overflow-checks = true
incremental = false
inherits = "test"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true