Initialize new Cargo repository

This commit is contained in:
Valentin Tolmer 2021-03-02 12:45:30 +01:00
parent 65e3e2f070
commit 6519b5c894
2 changed files with 14 additions and 0 deletions

11
Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "lldap"
version = "0.1.0"
authors = [
"Valentin Tolmer <valentin@tolmer.fr>",
"Steve Barrau <steve.barrau@gmail.com>",
"Thomas Wickham <mackwic@gmail.com>"
]
edition = "2018"
[dependencies]

3
src/main.rs Normal file
View File

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