shannonshell 0.3.1

An AI-first shell with seamless access to bash, nushell, and any other shell
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fn main() {
    // Set NU_FEATURES env var at compile time (used by version command)
    let features: Vec<&str> = vec![
        #[cfg(feature = "plugin")]
        "plugin",
        #[cfg(feature = "sqlite")]
        "sqlite",
        #[cfg(feature = "trash-support")]
        "trash-support",
        #[cfg(feature = "network")]
        "network",
        #[cfg(feature = "mcp")]
        "mcp",
    ];
    println!("cargo:rustc-env=NU_FEATURES={}", features.join(","));
}