knowledge 0.11.0

The launcher and updater for the Knowledge.Dev MCP binary
Documentation
pub mod app;
pub mod app_info;
pub mod cacher;
pub mod crates;
pub mod download;
pub mod mcp;
pub mod opts;
pub mod workbench;

use once_cell::sync::Lazy;
use semver::Version;

pub const USER_AGENT: &str = "Knowledge.Dev Launcher (support@knowledge.dev)";

pub static VERSION: Lazy<Version> = Lazy::new(|| built_info::PKG_VERSION.parse().unwrap());

pub mod built_info {
    // The file has been placed there by the build script.
    include!(concat!(env!("OUT_DIR"), "/built.rs"));
}