~/selfhut

6c6e116074664f8a83a62232524b1dd2d3849869 — Arthur Melton 2 years ago
init
3 files changed, 15 insertions(+), 0 deletions(-)

A .gitignore
A Cargo.toml
A src/main.rs
A .gitignore +1 -0
@@ 0,0 1,1 @@

/target

A Cargo.toml +11 -0
@@ 0,0 1,11 @@

[package]
name = "git"
version = "0.1.0"
edition = "2021"

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

[dependencies]
git2 = "0.15.0"
markdown = "0.3.0"
rocket = "0.4.11"

A src/main.rs +3 -0
@@ 0,0 1,3 @@

fn main() {
    println!("Hello, world!");
}