[package]
edition = "2021"
rust-version = "1.85"
name = "gnosis"
version = "0.1.0"
authors = ["Gnosis Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "gnosis"
description = "Gnosis — enterprise knowledge compiler (CLI + library)"
homepage = "https://github.com/thanos/gnosis"
documentation = "https://docs.rs/gnosis"
readme = "README.md"
keywords = [
"knowledge",
"compiler",
"okf",
"tree-sitter",
"tui",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/thanos/gnosis"
[lib]
name = "gnosis"
path = "src/lib.rs"
[[bin]]
name = "gnosis"
path = "src/main.rs"
[[test]]
name = "cli_smoke"
path = "tests/cli_smoke.rs"
[[test]]
name = "e2e_fixture"
path = "tests/e2e_fixture.rs"
[[test]]
name = "export"
path = "tests/export.rs"
[[test]]
name = "filesystem_git"
path = "tests/filesystem_git.rs"
[[test]]
name = "providers_and_fs"
path = "tests/providers_and_fs.rs"
[[test]]
name = "query_events_content"
path = "tests/query_events_content.rs"
[[test]]
name = "store_and_providers"
path = "tests/store_and_providers.rs"
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "1"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.crossterm]
version = "0.29"
[dependencies.csv]
version = "1"
[dependencies.ignore]
version = "0.4"
[dependencies.mime_guess]
version = "2"
[dependencies.pulldown-cmark]
version = "0.13"
default-features = false
[dependencies.ratatui]
version = "0.30"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1.1"
[dependencies.tree-sitter]
version = "0.26"
[dependencies.tree-sitter-cpp]
version = "0.23"
[dependencies.tree-sitter-elixir]
version = "0.3"
[dependencies.tree-sitter-rust]
version = "0.24"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.crossbeam-channel]
version = "0.5"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"