Initial code checkin

This commit is contained in:
Sven-Hendrik Haase 2020-05-19 14:23:45 +02:00
parent 68f1d3b355
commit 6c2b9d67cd
No known key found for this signature in database
GPG Key ID: 39E4B877E62EB915
4 changed files with 1443 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

1428
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

11
Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "gluebuddy"
version = "0.1.0"
authors = ["Sven-Hendrik Haase <svenstaro@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
keycloak = "10"
gitlab = "0.1210"

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}