mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "OpenHuman"
|
|
version = "0.49.23"
|
|
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"] }
|
|
tauri-plugin-deep-link = "2.0.0"
|
|
tauri-plugin-opener = "2"
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "process", "sync", "time", "net"] }
|
|
|
|
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 = []
|