-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (43 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
51 lines (43 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "ph7-console"
version = "0.1.0"
description = "ML-First Terminal with Local AI"
authors = ["pH7Console Team"]
license = "MIT"
repository = "https://github.com/EfficientTools/pH7Console"
default-run = "ph7-console"
edition = "2021"
rust-version = "1.70"
[build-dependencies]
tauri-build = { version = "2.0", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "2.0", features = [ "protocol-asset"] }
tauri-plugin-shell = "2.0"
tauri-plugin-fs = "2.0"
tauri-plugin-process = "2.0"
# Local AI/ML Dependencies - disabled for now due to version conflicts
# candle-core = "0.6"
# candle-nn = "0.6"
# candle-transformers = "0.6"
# tokenizers = "0.19"
# hf-hub = "0.3"
# Terminal/PTY handling
portable-pty = "0.8"
tokio = { version = "1.0", features = ["full"] }
# System integration
sysinfo = "0.30"
dirs = "5.0"
uuid = { version = "1.0", features = ["v4"] }
# Async utilities
futures = "0.3"
async-trait = "0.1"
[features]
# This feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
# If you use cargo directly instead of tauri's cli you can use this feature flag to switch between tauri's `dev` and `build` modes.
# DO NOT REMOVE!!
custom-protocol = [ "tauri/custom-protocol" ]
[[bin]]
name = "ph7-console"
path = "src/main.rs"