[package]
edition = "2024"
name = "notedthat"
version = "0.3.0"
authors = ["NotedThat Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "NotedThat — installs the notedthat-server and notedthat-mcp-stdio binaries"
homepage = "https://github.com/NotedThat/NotedThat"
readme = "README.md"
license = "MPL-2.0"
repository = "https://github.com/NotedThat/NotedThat"
resolver = "2"
[package.metadata.dist]
dist = true
[[bin]]
name = "notedthat-mcp-stdio"
path = "src/bin/notedthat-mcp-stdio.rs"
[[bin]]
name = "notedthat-server"
path = "src/bin/notedthat-server.rs"
[[test]]
name = "env_validation"
path = "tests/env_validation.rs"
[[test]]
name = "mcp_cross_surface_e2e"
path = "tests/mcp_cross_surface_e2e.rs"
[[test]]
name = "mcp_e2e"
path = "tests/mcp_e2e.rs"
[[test]]
name = "mcp_http_cross_surface_e2e"
path = "tests/mcp_http_cross_surface_e2e.rs"
[[test]]
name = "stdio_purity"
path = "tests/stdio_purity.rs"
[dependencies.anyhow]
version = "1"
[dependencies.notedthat-mcp-stdio]
version = "0.3.0"
[dependencies.notedthat-server]
version = "0.3.0"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
default-features = false
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.notedthat-api-http]
version = "0.3.0"
features = ["test-support"]
[dev-dependencies.notedthat-core]
version = "0.3.0"
[dev-dependencies.notedthat-indexer]
version = "0.3.0"
features = ["test-support"]
[dev-dependencies.notedthat-server]
version = "0.3.0"
features = ["test-support"]
[dev-dependencies.notedthat-storage-s3]
version = "0.3.0"
[dev-dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"io-util",
"process",
"time",
"sync",
]
default-features = false
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"