Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 3 additions & 5 deletions crates/coven-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@ coven-runtime-spec = { git = "https://github.com/OpenCoven/coven-runtimes", tag
# The authority-boundary gate layer for familiar protected surfaces
# (PHASE-0-DESIGN.md in OpenCoven/coven-threads; RFC-0001 §5). The daemon is
# the only caller: familiar-controlled processes never reach this crate.
# Pinned to a release tag like coven-runtime-spec above. NOTE: repo is private
# until the visibility flip (Val decision); local builds authenticate via the
# git CLI (.cargo/config.toml `net.git-fetch-with-cli`).
coven-threads-core = { git = "https://github.com/OpenCoven/coven-threads", tag = "v0.1.3", version = "0.1.0" }
# Pinned to the reviewed Phase 5 core revision until its 0.2 release tag lands.
coven-threads-core = { git = "https://github.com/OpenCoven/coven-threads", rev = "7da030d", version = "0.2.0" }
blake3 = "1"
time = { version = "0.3", features = ["formatting"] }
crossterm = "0.29"
Expand Down Expand Up @@ -56,7 +54,7 @@ libc = "0.2"
[target.'cfg(windows)'.dependencies]
interprocess = "2"
widestring = "1"
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_Security", "Win32_System_Console", "Win32_System_Threading", "Win32_System_JobObjects", "Win32_System_SystemInformation"] }
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console", "Win32_System_Threading", "Win32_System_JobObjects", "Win32_System_SystemInformation"] }

[dev-dependencies]
tempfile = "3"
Loading