Skip to content
Draft
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
6 changes: 5 additions & 1 deletion biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@
// executor preparation scripts, so reformatting breaks provenance
// verification; bundled-tools.json is their generated sibling.
"!apps/desktop/resources/licenses/**",
"!apps/desktop/bundled-tools.json"
"!apps/desktop/bundled-tools.json",
// Computer Use harness outputs are raw evidence, not authored source.
// Keep their exact captured formatting and avoid Biome's 1 MiB input
// ceiling for repeated Chromium runs.
"!experiments/maka-cu-windows/**/*-results*.json"
]
},
"javascript": {
Expand Down
1 change: 1 addition & 0 deletions experiments/maka-cu-windows-rust/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target/
291 changes: 291 additions & 0 deletions experiments/maka-cu-windows-rust/Cargo.lock

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

58 changes: 58 additions & 0 deletions experiments/maka-cu-windows-rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

[package]
name = "maka-cu-windows-rust"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
publish = false
description = "Minimal direct-COM Windows Computer Use comparison executor"

[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
base64 = "0.22"
flate2 = "1"

[target.'cfg(windows)'.dependencies]
windows = { version = "0.62.2", features = [
"Win32_Foundation",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Dxgi",
"Win32_Graphics_Dxgi_Common",
"Win32_Graphics_Gdi",
"Win32_System_Com",
"Win32_System_Ole",
"Win32_System_Threading",
"Win32_System_WinRT",
"Win32_System_WinRT_Direct3D11",
"Win32_System_WinRT_Graphics_Capture",
"Graphics_Capture",
"Graphics_DirectX_Direct3D11",
"Win32_UI_Accessibility",
"Win32_UI_Input",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_WindowsAndMessaging",
] }

[profile.release]
strip = "symbols"
opt-level = "z"
lto = true
codegen-units = 1
Loading