Add initial binary
Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
parent
37a4e87986
commit
bcd54266bf
4 changed files with 24 additions and 0 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -6,3 +6,10 @@
|
|||
|
||||
# Nix
|
||||
/result*
|
||||
|
||||
|
||||
# Added by cargo
|
||||
#
|
||||
# already existing elements were commented out
|
||||
|
||||
#/target
|
||||
|
|
|
|||
7
Cargo.lock
generated
Normal file
7
Cargo.lock
generated
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 4
|
||||
|
||||
[[package]]
|
||||
name = "hem"
|
||||
version = "0.1.0"
|
||||
7
Cargo.toml
Normal file
7
Cargo.toml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
[package]
|
||||
name = "hem"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
description = "Hemera's Expression Manipulator, editing text on the CLI"
|
||||
|
||||
[dependencies]
|
||||
3
src/main.rs
Normal file
3
src/main.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue