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!"); }