From aa7e3ac26baa3b2d02490febbe6c8c6b803087be Mon Sep 17 00:00:00 2001 From: Ivan Nizelnik Date: Sat, 25 Oct 2025 09:26:35 +0300 Subject: [PATCH] fix(cargo): remove bloat --- Cargo.lock | 7 ------- Cargo.toml | 6 ------ Makefile | 2 ++ 3 files changed, 2 insertions(+), 13 deletions(-) delete mode 100644 Cargo.lock delete mode 100644 Cargo.toml create mode 100644 Makefile diff --git a/Cargo.lock b/Cargo.lock deleted file mode 100644 index 3d97b38..0000000 --- a/Cargo.lock +++ /dev/null @@ -1,7 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 4 - -[[package]] -name = "orpheus" -version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml deleted file mode 100644 index 1d0b963..0000000 --- a/Cargo.toml +++ /dev/null @@ -1,6 +0,0 @@ -[package] -name = "orpheus" -version = "0.1.0" -edition = "2024" - -[dependencies] diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..050b9fd --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +build: + rustc src/main.rs -o orpheus