[package]
name = "knot-server"
version = "0.2.6"
edition = "2024"
description = "Distributed REST API server for knot codebase indexing. Manages Git repositories across a cluster with shared workspace coordination."
authors = ["Raul Tovar <raultov@protonmail.com>"]
license = "MIT"
repository = "https://github.com/raultov/knot-server"
exclude = ["docs/demo-graph.webp", "docs/demo-swagger.webp"]
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
[profile.dist]
inherits = "release"
lto = "thin"
[dependencies]
knot = "1.4.13"
ignore = "0.4"
axum = "0.8"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
clap = { version = "4", features = ["derive", "env"] }
anyhow = "1"
fs2 = "0.4"
rayon = "1"
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
neo4rs = "0.9.0-rc.9"
utoipa = { version = "5", features = ["axum_extras"] }
utoipa-axum = "0.2"
utoipa-swagger-ui = { version = "9", features = ["axum"] }
[dev-dependencies]
tempfile = "3"
tower = { version = "0.5", features = ["util"] }