mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-17 23:14:03 +01:00
Add .oxfmtignore to skip generated bindings and wasm-pack output. Add npm format script, update DEVELOPMENT.md for Vite+ toolchain, and format all non-generated files with oxfmt. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
55 lines
1.2 KiB
TOML
55 lines
1.2 KiB
TOML
[package]
|
|
name = "yaak-cli"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "yaak"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
arboard = "3"
|
|
base64 = "0.22"
|
|
clap = { version = "4", features = ["derive"] }
|
|
console = "0.15"
|
|
dirs = "6"
|
|
env_logger = "0.11"
|
|
futures = "0.3"
|
|
inquire = { version = "0.7", features = ["editor"] }
|
|
hex = { workspace = true }
|
|
include_dir = "0.7"
|
|
keyring = { workspace = true, features = ["apple-native", "windows-native", "sync-secret-service"] }
|
|
log = { workspace = true }
|
|
rand = "0.8"
|
|
reqwest = { workspace = true }
|
|
rolldown = "0.1.0"
|
|
oxc_resolver = "=11.10.0"
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
tokio = { workspace = true, features = [
|
|
"rt-multi-thread",
|
|
"macros",
|
|
"io-util",
|
|
"net",
|
|
"signal",
|
|
"time",
|
|
] }
|
|
walkdir = "2"
|
|
webbrowser = "1"
|
|
zip = "4"
|
|
yaak = { workspace = true }
|
|
yaak-api = { workspace = true }
|
|
yaak-crypto = { workspace = true }
|
|
yaak-http = { workspace = true }
|
|
yaak-models = { workspace = true }
|
|
yaak-plugins = { workspace = true }
|
|
yaak-templates = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2"
|
|
predicates = "3"
|
|
tempfile = "3"
|