Skip to content

Commit

Permalink
Devolutions host bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
pacmancoder committed Aug 27, 2024
1 parent 15f544c commit e3f5b1f
Show file tree
Hide file tree
Showing 24 changed files with 1,446 additions and 39 deletions.
20 changes: 20 additions & 0 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = [
"crates/*",
"devolutions-agent",
"devolutions-gateway",
"devolutions-gateway", "devolutions-host",
"jetsocat",
"tools/generate-openapi",
]
Expand Down
6 changes: 4 additions & 2 deletions crates/win-api-wrappers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,20 @@ publish = false
base16ct = { version = "0.2.0", features = ["alloc"] }
anyhow = "1.0.86"
thiserror = "1.0.63"
tracing = "0.1"

[dependencies.windows]
version = "0.58.0"
features = [
"Win32_Foundation",
"Win32_NetworkManagement_NetManagement",
"Win32_Security",
"Win32_Security_Authentication_Identity",
"Win32_Security_Authorization",
"Win32_Security_Cryptography",
"Win32_Security_Cryptography_Catalog",
"Win32_Security_Cryptography_Sip",
"Win32_Security_Cryptography",
"Win32_Security_WinTrust",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Com",
"Win32_System_Diagnostics_Debug",
Expand All @@ -38,6 +39,7 @@ features = [
"Win32_System_Pipes",
"Win32_System_ProcessStatus",
"Win32_System_Registry",
"Win32_System_RemoteDesktop",
"Win32_System_Rpc",
"Win32_System_StationsAndDesktops",
"Win32_System_SystemServices",
Expand Down
4 changes: 4 additions & 0 deletions crates/win-api-wrappers/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#[macro_use]
extern crate tracing;

#[cfg(target_os = "windows")]
#[path = ""]
mod lib_win {
Expand All @@ -8,6 +11,7 @@ mod lib_win {
pub mod identity;
pub mod process;
pub mod security;
pub mod session;
pub mod thread;
pub mod token;
pub mod utils;
Expand Down
Loading

0 comments on commit e3f5b1f

Please sign in to comment.