larashell 0.14.0

A fast, cross-platform, OpenGL terminal emulator with AI-powered autocomplete
[package]

name = "larashell"

version = "0.14.0"

authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]

license = "Apache-2.0"

description = "A fast, cross-platform, OpenGL terminal emulator with AI-powered autocomplete"

readme = "README.md"

homepage = "https://github.com/larashell/larashell"

edition = "2021"

rust-version = "1.70.0"



[dependencies.larashell_terminal]

path = "../larashell_terminal"

version = "0.22.1"



[dependencies.larashell_config_derive]

path = "../larashell_config_derive"

version = "0.2.3"



[dependencies.larashell_config]

path = "../larashell_config"

version = "0.2.1"



[dependencies]

ahash = { version = "0.8.6", features = ["no-rng"] }

bitflags = "2.2.1"

clap = { version = "4.2.7", features = ["derive", "env"] }

copypasta = { version = "0.10.1", default-features = false }

crossfont = { version = "0.7.0", features = ["force_system_fontconfig"] }

glutin = { version = "0.31.1", default-features = false, features = ["egl", "wgl"] }

home = "0.5.5"

libc = "0.2"

log = { version = "0.4", features = ["std", "serde"] }

notify = "6.1.1"

parking_lot = "0.12.0"

raw-window-handle = "0.5"

serde = { version = "1", features = ["derive"] }

serde_json = "1"

serde_yaml = "0.9.25"

toml = "0.8.2"

unicode-width = "0.1"

winit = { version = "0.29.15", default-features = false, features = ["rwh_05", "serde"] }



# AI Integration dependencies

reqwest = { version = "0.11", features = ["json", "rustls-tls"] }

tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] }



[build-dependencies]

gl_generator = "0.14.0"



[dev-dependencies]

clap_complete = "4.2.3"



[target.'cfg(not(windows))'.dependencies]

xdg = "2.5.0"



[target.'cfg(not(target_os = "macos"))'.dependencies]

png = { version = "0.17.5", default-features = false, optional = true }



[target.'cfg(target_os = "macos")'.dependencies]

cocoa = "0.25.0"

objc = "0.2.2"



[target.'cfg(windows)'.dependencies]

dirs = "5.0.1"

windows-sys = { version = "0.48", features = [

    "Win32_UI_WindowsAndMessaging",

    "Win32_System_Threading",

    "Win32_System_Console",

    "Win32_Foundation",

]}



[target.'cfg(windows)'.build-dependencies]

embed-resource = "2.2.0"



[features]

default = ["wayland", "x11"]

x11 = [

    "copypasta/x11",

    "winit/x11",

    "glutin/x11",

    "glutin/glx",

    "png",

]

wayland = [

    "copypasta/wayland",

    "glutin/wayland",

    "winit/wayland",

    "winit/wayland-dlopen",

    "winit/wayland-csd-adwaita-crossfont",

]

nightly = []