[package]
edition = "2024"
rust-version = "1.85"
name = "code-it-later-rs"
version = "0.10.1"
authors = ["ccQpein"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Filter crumbs you left in comments of code to remind where you were"
readme = "README.md"
license = "MIT"
repository = "https://github.com/ccqpein/code-it-later-rs"
[lib]
name = "code_it_later_rs"
path = "src/lib.rs"
[[bin]]
name = "codeitlater"
path = "src/main.rs"
[[test]]
name = "test_clean"
path = "tests/test_clean.rs"
[[test]]
name = "test_keywords"
path = "tests/test_keywords.rs"
[[test]]
name = "test_langs"
path = "tests/test_langs.rs"
[[test]]
name = "test_multilines"
path = "tests/test_multilines.rs"
[[test]]
name = "test_show_ignore"
path = "tests/test_show_ignore.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.env_logger]
version = "0"
[dependencies.log]
version = "0"
[dependencies.memmap2]
version = "0"
[dependencies.regex]
version = "1"
[dependencies.rustyline]
version = "9"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"