Piotr Mikołajczyk
6 months ago
No known key found for this signature in database
GPG Key ID: 7ADA31326DE28EC7
5 changed files with
28 additions and
0 deletions
-
Cargo.lock
-
Cargo.toml
-
rust-toolchain.toml
-
rustfmt.toml
-
src/main.rs
|
|
@ -0,0 +1,7 @@ |
|
|
|
# This file is automatically @generated by Cargo. |
|
|
|
# It is not intended for manual editing. |
|
|
|
version = 3 |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "playground" |
|
|
|
version = "0.1.0" |
|
|
@ -0,0 +1,7 @@ |
|
|
|
[package] |
|
|
|
name = "playground" |
|
|
|
version = "0.1.0" |
|
|
|
edition = "2021" |
|
|
|
authors = ["Piotr Mikołajczyk <piomiko41@gmail.com>"] |
|
|
|
|
|
|
|
[dependencies] |
|
|
@ -0,0 +1,4 @@ |
|
|
|
[toolchain] |
|
|
|
channel = "1.79" |
|
|
|
components = [ "rustfmt", "clippy", "rust-src" ] |
|
|
|
targets = [ "x86_64-unknown-linux-gnu" ] |
|
|
@ -0,0 +1,7 @@ |
|
|
|
edition = "2021" |
|
|
|
use_field_init_shorthand = true |
|
|
|
reorder_modules = true |
|
|
|
|
|
|
|
imports_granularity = "Crate" |
|
|
|
group_imports = "StdExternalCrate" |
|
|
|
reorder_imports = true |
|
|
@ -0,0 +1,3 @@ |
|
|
|
fn main() {
|
|
|
|
println!("Hello, world!");
|
|
|
|
}
|