First commit

This commit is contained in:
Federico Terzi 2019-08-30 09:58:54 +02:00
parent 681dfba7a6
commit 39ec131ef9
4 changed files with 19 additions and 4 deletions

9
.gitignore vendored
View File

@ -2,9 +2,10 @@
# will have compiled files and executables
/target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
/target
**/*.rs.bk
.idea

4
Cargo.lock generated Normal file
View File

@ -0,0 +1,4 @@
[[package]]
name = "espanso"
version = "0.1.0"

7
Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "espanso"
version = "0.1.0"
authors = ["Federico Terzi <federicoterzi96@gmail.com>"]
edition = "2018"
[dependencies]

3
src/main.rs Normal file
View File

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