[package] name = "OpenHuman" version = "0.52.0" description = "OpenHuman - AI-powered Super Assistant" authors = ["OpenHuman"] edition = "2021" default-run = "OpenHuman" autobins = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] # The `_lib` suffix may seem redundant but it is necessary # to make the lib name unique and wouldn't conflict with the bin name. # This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519 name = "openhuman" crate-type = ["staticlib", "cdylib", "rlib"] [[bin]] name = "OpenHuman" path = "src/main.rs" [build-dependencies] tauri-build = { version = "2", features = [] } serde_json = "1" [dependencies] # Tauri core and plugins tauri = { version = "2.10", features = ["macos-private-api", "tray-icon"] } tauri-plugin-deep-link = "2.0.0" tauri-plugin-global-shortcut = "2" tauri-plugin-opener = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" tokio = { version = "1", features = ["rt-multi-thread", "process", "sync", "time", "net"] } reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] } semver = "1" log = "0.4" env_logger = "0.11" [features] # This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!! custom-protocol = ["tauri/custom-protocol"] sandbox-bubblewrap = [] # Fast CI builds: trade runtime perf for compile speed [profile.ci] inherits = "release" opt-level = 1 codegen-units = 16 lto = false incremental = false strip = true debug = false