https://github.com/luracasmus/oxygen
Simple and convenient installer, launcher and updater for Rust apps (WIP but probably works)
https://github.com/luracasmus/oxygen
Last synced: 3 months ago
JSON representation
Simple and convenient installer, launcher and updater for Rust apps (WIP but probably works)
- Host: GitHub
- URL: https://github.com/luracasmus/oxygen
- Owner: Luracasmus
- License: apache-2.0
- Created: 2024-06-23T22:37:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-10T14:29:13.000Z (6 months ago)
- Last Synced: 2025-02-08T20:16:04.289Z (5 months ago)
- Language: Rust
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# Oxygen
"Package manager" compiling crates with native CPU features and maximal optimizationsTo install a crate, run Oxygen with the path to an Oxygen Manifest (in RON format), such as this:
`circles.o2`:
```ron
(
name: "circles",
path: Git(
url: "https://github.com/Luracasmus/circles.git",
path: None
),
features: Default
)
```
`> oxygen "path/to/circles.o2"`The crate will be installed in a directory next to Oxygen itself, and can be started by simply opening the manifest again (you can even associate Oxygen with the `o2` file extension to make the manifest work almost like a shortcut!). Every time the manifest is ran, the crate, along with Rustup and the Rust toolchain are automatically updated. If the crate is already installed, updates run after it exits to minimize launch time. All compiled dependencies are cached and shared between crates
Oxygen requires Rustup and Cargo to be installed