cargo init
This commit is contained in:
parent
51b6749892
commit
f7af4367cf
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
target/
|
||||
debug/
|
||||
|
||||
Cargo.lock
|
||||
|
||||
**/*.rs.bk
|
||||
*.swp
|
9
Cargo.toml
Normal file
9
Cargo.toml
Normal 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
3
src/main.rs
Normal file
@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Reference in New Issue
Block a user