commit fd80e01c1055606d33d180bd60bb3dd05abf3ae9 from: Murilo Ijanc date: Fri Apr 3 00:14:35 2026 UTC Init commit - /dev/null commit + fd80e01c1055606d33d180bd60bb3dd05abf3ae9 blob - /dev/null blob + ea8c4bf7f35f6f77f75d92ad8ce8349f6e81ddba (mode 644) --- /dev/null +++ .gitignore @@ -0,0 +1 @@ +/target blob - /dev/null blob + df99c69198f5813df5fc3eaa007a2af0e60a7bbd (mode 644) --- /dev/null +++ .rustfmt.toml @@ -0,0 +1 @@ +max_width = 80 blob - /dev/null blob + 239969728b6b12667dace943cf7cb1568ffbeffc (mode 644) --- /dev/null +++ Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "oos" +version = "0.1.0" blob - /dev/null blob + d9fb3c0c089aedfec355bda2247d43d57160479b (mode 644) --- /dev/null +++ Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "oos" +version = "0.1.0" +authors = ["Murilo Ijanc' "] +edition = "2024" +homepage = "https://ijanc.org/oos/" +license = "ISC" +readme = "README.md" +repository = "https://git.ijanc.org/oos/" + +[dependencies] blob - /dev/null blob + ccb3f3d7f0d5c2380172474e614e4d98aa56aa1f (mode 644) --- /dev/null +++ LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2025-2026 Murilo Ijanc' + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. blob - /dev/null blob + 76ef8853b9a6018a258a4674fd89a4c487ce98e7 (mode 644) --- /dev/null +++ Makefile @@ -0,0 +1,37 @@ +.PHONY: all check build build-release test fmt clippy lint doc clean install run + +all: run + +check: + cargo check + +build: + cargo build + +build-release: + cargo build + +test: + cargo test + +fmt: + cargo fmt + +clippy: + cargo clippy + +lint: + cargo fmt --check + cargo clippy --all-features -- -D warnings + +doc: + cargo doc + +clean: + cargo clean + +install: + cargo install --path . + +run: + cargo run blob - /dev/null blob + 8133c0e02c4fc54d3bf1a7e83e9ec8ba9ee370f1 (mode 644) --- /dev/null +++ README.md @@ -0,0 +1,7 @@ +# oos + +Olivia Operation System + +## License + +ISC — see [LICENSE](LICENSE). blob - /dev/null blob + e7a11a969c037e00a796aafeff6258501ec15e9a (mode 644) --- /dev/null +++ src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}