cargo init

This commit is contained in:
Volodymyr Patuta 2020-11-26 13:49:42 +01:00
parent 51b6749892
commit f7af4367cf
3 changed files with 19 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
target/
debug/
Cargo.lock
**/*.rs.bk
*.swp

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "rnote"
version = "0.1.0"
authors = ["Volodymyr Patuta <6977238-fiplox@users.noreply.gitlab.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
src/main.rs Normal file
View File

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