rusbview
rusbview is a desktop application for inspecting USB enum
File Explorer
- build-release.yml
- pull-request.yml
- rusbview_treeview_app_icon.svg
- derive-version.mjs
- badge.tsx
- button.tsx
- card.tsx
- input.tsx
- resizable.tsx
- scroll-area.tsx
- separator.tsx
- skeleton.tsx
- tabs.tsx
- tooltip.tsx
- DetailPane.tsx
- SettingsPage.tsx
- TreeSidebar.tsx
- i18n.ts
- types.ts
- usb.ts
- utils.ts
- translation.json
- translation.json
- App.tsx
- index.css
- main.tsx
- vite-env.d.ts
- default.json
- ic_launcher.xml
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher_background.xml
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- 128x128.png
- [email protected]
- 32x32.png
- 64x64.png
- icon.icns
- icon.ico
- icon.png
- Square107x107Logo.png
- Square142x142Logo.png
- Square150x150Logo.png
- Square284x284Logo.png
- Square30x30Logo.png
- Square310x310Logo.png
- Square44x44Logo.png
- Square71x71Logo.png
- Square89x89Logo.png
- StoreLogo.png
- history.rs
- i18n.rs
- lib.rs
- logging.rs
- main.rs
- monitor.rs
- usb.rs
- mod.rs
- history.rs
- i18n.rs
- logging.rs
- usb.rs
- .gitignore
- build.rs
- Cargo.toml
- tauri.conf.json
- .gitignore
- AGENTS.md
- Cargo.lock
- Cargo.toml
- components.json
- index.html
- LICENSE
- package.json
- pnpm-lock.yaml
- README.md
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cargo test
View Details ▼
cargo test
Execute the unit and integration tests of a Rust package.
cargo {{[t|test]}} {{test_name}}
Only run tests containing a specific string in their names:
cargo {{[t|test]}} -- --test-threads {{count}}
Set the number of simultaneous running test cases:
cargo {{[t|test]}} {{[-r|--release]}}
Test artifacts in release mode, with optimizations:
pnpm
View Details ▼
pnpm
Fast, disk space efficient package manager for Node.js.
Manage Node.js projects and their module dependencies.
pnpm init
Create a `package.json` file:
pnpm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
pnpm add {{module_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
