Compare commits

..

2 Commits

Author SHA1 Message Date
SadlyNotSappho 040722c858 basic ass os detection 2023-03-10 12:31:05 -08:00
SadlyNotSappho 20fd2a3083 init rust project 2023-03-10 12:20:25 -08:00
3 changed files with 18 additions and 0 deletions

5
.gitignore vendored
View File

@ -14,3 +14,8 @@ Cargo.lock
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# Added by cargo
/target

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "gayfetch"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dotenv-parser = "0.1.3"

4
src/main.rs Normal file
View File

@ -0,0 +1,4 @@
use gayfetch::get_os;
fn main() {
get_os()
}