Compare commits

...

No commits in common. "9741df29e35aced78e5f53518ab793a3f9d7db2f" and "5da3f9aa8e658970318b27817403f69dfb9a6365" have entirely different histories.

6 changed files with 14 additions and 24 deletions

19
.gitignore vendored
View file

@ -1,9 +1,18 @@
# ---> VirtualEnv
# Virtualenv
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
.Python
[Bb]in
[Ii]nclude
[Ll]ib
[Ll]ib64
[Ll]ocal
[Ss]cripts
pyvenv.cfg
.venv
pip-selfcheck.json
# ---> GPG
secring.*
# Added by cargo
/target

7
Cargo.lock generated
View file

@ -1,7 +0,0 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "simple-crud"
version = "0.1.0"

View file

@ -1,6 +0,0 @@
[package]
name = "simple-crud"
version = "0.1.0"
edition = "2021"
[dependencies]

View file

@ -1,3 +0,0 @@
fn main() {
println!("Hello from cli bin!");
}

View file

@ -1,3 +0,0 @@
fn main() {
println!("Hello from web bin!");
}

View file