~xenrox/aoc2020

a1f91fc69cbbd77fce435fffaccd8297641895a7 — Thorben Günther 3 years ago
Start with Advent of Code 2020
4 files changed, 18 insertions(+), 0 deletions(-)

A .gitignore
A Cargo.lock
A Cargo.toml
A src/main.rs
A  => .gitignore +1 -0
@@ 1,1 @@
/target

A  => Cargo.lock +5 -0
@@ 1,5 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "aoc2020"
version = "0.1.0"

A  => Cargo.toml +9 -0
@@ 1,9 @@
[package]
name = "aoc2020"
version = "0.1.0"
authors = ["Thorben Günther <admin@xenrox.net>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]

A  => src/main.rs +3 -0
@@ 1,3 @@
fn main() {
    println!("Hello, world!");
}