-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (34 loc) · 1.01 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
[package]
name = "commandok"
version = "0.1.7"
edition = "2021"
description = "Spotlight-like command generator for your terminal, powered by LLMs"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/64bit/commandOK"
repository = "https://github.com/64bit/commandOK"
[features]
default = []
# On-device Apple Intelligence via the FoundationModels framework.
# Requires macOS 26+ on Apple Silicon and the Swift toolchain (xcrun/swiftc) at build time.
apple-intelligence = []
[dependencies]
ratatui = "0.30"
unicode-width = "0.2.2"
crossterm = "0.29"
reqwest = { version = "0.13", default-features = false, features = [
"json",
"rustls",
] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1.1"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_System_Console"] }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"