Files
qiming/qimingclaw/crates/windows-sandbox-helper/Cargo.toml

50 lines
1.3 KiB
TOML

[package]
edition = "2021"
license = "MIT"
name = "windows-sandbox-helper"
version = "0.1.0"
description = "Windows Restricted Token sandbox helper binary"
repository = "https://github.com/qiming/qiming-agent"
rust-version = "1.75"
[[bin]]
name = "qiming-sandbox-helper"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = { version = "0.8", default-features = false, features = ["std", "small_rng"] }
dirs-next = "2.0"
dunce = "1.0"
clap = { version = "4.5", features = ["derive", "env"] }
[dependencies.windows-sys]
version = "0.52"
features = [
"Win32_Foundation",
"Win32_System_Diagnostics_Debug",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_System_Threading",
"Win32_System_JobObjects",
"Win32_System_SystemServices",
"Win32_System_Environment",
"Win32_System_Pipes",
"Win32_System_WindowsProgramming",
"Win32_System_IO",
"Win32_System_Memory",
"Win32_System_Kernel",
"Win32_System_Console",
"Win32_Storage_FileSystem",
"Win32_System_Diagnostics_ToolHelp",
"Win32_Networking_WinSock",
"Win32_System_LibraryLoader",
"Win32_System_Com",
"Win32_Security_Authentication_Identity",
]
[dev-dependencies]
tempfile = "3"