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
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ devolutions-gateway/openapi/dotnet-client/docs/** linguist-generated merge=binar
devolutions-gateway/openapi/dotnet-subscriber/src/** linguist-generated merge=binary
devolutions-gateway/openapi/ts-angular-client/api/** linguist-generated merge=binary
devolutions-gateway/openapi/ts-angular-client/model/** linguist-generated merge=binary

# Sample assets produce huge LoC counts; exclude them from language statistics.
devolutions-agent/src/broker/assets/** linguist-generated
192 changes: 185 additions & 7 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions crates/devolutions-agent-shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ camino = "1.1"
cfg-if = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tempfile = "3"
thiserror = "2"
tracing = "0.1"

[target.'cfg(windows)'.dependencies]
windows-registry = "0.5"
Expand Down
1 change: 1 addition & 0 deletions crates/devolutions-agent-shared/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
pub mod windows;

mod date_version;
pub mod temp_file;
mod update_manifest;
mod update_status;

Expand Down
Loading
Loading