Initial commit

master
Benoît 2018-05-01 12:14:25 +02:00
parent 850a34ff30
commit e826b1f032
3 changed files with 12 additions and 0 deletions

3
.gitignore vendored 100644
View File

@ -0,0 +1,3 @@
/target
**/*.rs.bk

6
Cargo.toml 100644
View File

@ -0,0 +1,6 @@
[package]
name = "rdupe"
version = "0.1.0"
authors = ["Benoît Mauduit <bmauduit@beneth.fr>"]
[dependencies]

3
src/main.rs 100644
View File

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