This commit is contained in:
Ivan Bushchik 2023-07-03 14:23:57 +03:00
commit e03672a6ea
No known key found for this signature in database
GPG key ID: 9F6DDABE11A2674D
5 changed files with 26 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

11
.rustfmt.toml Normal file
View file

@ -0,0 +1,11 @@
edition = "2021"
hard_tabs = true
merge_derives = true
reorder_imports = true
reorder_modules = true
use_field_init_shorthand = true
use_small_heuristics = "Off"
# May need nightly rustfmt
wrap_comments = true
comment_width = 80

8
Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "rust-template"
version = "0.1.0"
edition = "2021"
# 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!");
}

3
tea.yaml Normal file
View file

@ -0,0 +1,3 @@
dependencies:
rust-lang.org: '>=1.70'
rust-lang.org/cargo: '*'