Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goto-bus-stop/dotreg
Parse and stringify Windows registry files – unstable, API still in progress!
https://github.com/goto-bus-stop/dotreg
Last synced: 27 days ago
JSON representation
Parse and stringify Windows registry files – unstable, API still in progress!
- Host: GitHub
- URL: https://github.com/goto-bus-stop/dotreg
- Owner: goto-bus-stop
- License: mpl-2.0
- Created: 2019-06-11T10:19:04.000Z (over 5 years ago)
- Default Branch: default
- Last Pushed: 2021-06-24T04:43:36.000Z (over 3 years ago)
- Last Synced: 2024-10-05T16:27:12.544Z (about 1 month ago)
- Language: Rust
- Homepage:
- Size: 63.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# dotreg
Parse and stringify Windows registry files (`.reg`).This crate deals with the text files used by regedit, not the binary registry hive format used by Windows internally.
## Installation
```toml
[dependencies]
dotreg = { git = "https://github.com/goto-bus-stop/dotreg" }
```## Goals
This should become a part of a crate that does cross-platform Windows registry reads and writes. On windows, it can use the windows `Reg*` APIs. Elsewhere, it can serialize the updates and do `wine reg.exe import tempfile.reg`.## License
[MPL-2.0](./LICENSE)