commit - /dev/null
commit + 56f463a75bb355f2ecb7ddaea6ae645889d0cd47
blob - /dev/null
blob + ea8c4bf7f35f6f77f75d92ad8ce8349f6e81ddba (mode 644)
--- /dev/null
+++ .gitignore
+/target
blob - /dev/null
blob + df99c69198f5813df5fc3eaa007a2af0e60a7bbd (mode 644)
--- /dev/null
+++ .rustfmt.toml
+max_width = 80
blob - /dev/null
blob + 239969728b6b12667dace943cf7cb1568ffbeffc (mode 644)
--- /dev/null
+++ Cargo.lock
+# 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 + 2fee224705ddecda4000efa4e6717bd0ec145f53 (mode 644)
--- /dev/null
+++ Cargo.toml
+[package]
+name = "oc"
+version = "0.1.0"
+authors = ["Murilo Ijanc' <murilo@ijanc.org>"]
+edition = "2024"
+homepage = "https://ijanc.org/oc/"
+license = "ISC"
+readme = "README.md"
+repository = "https://git.ijanc.org/oc/"
+
+[dependencies]
blob - /dev/null
blob + 2bab1c68d626762f3cb3a1c9c29d26c9e493626e (mode 644)
--- /dev/null
+++ LICENSE
+Copyright (c) 2024-2026 Murilo Ijanc' <murilo@ijanc.org>
+
+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
+.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 + e037e6eb1fe5db1d95c150928c948277bce313b3 (mode 644)
--- /dev/null
+++ README.md
+# oc
+
+Olivia Cloud
+
+## License
+
+ISC — see [LICENSE](LICENSE).
blob - /dev/null
blob + e7a11a969c037e00a796aafeff6258501ec15e9a (mode 644)
--- /dev/null
+++ src/main.rs
+fn main() {
+ println!("Hello, world!");
+}