diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2020-07-04 22:33:59 +0200 |
---|---|---|
committer | Robin Krahl <robin.krahl@ireas.org> | 2020-07-04 23:34:40 +0200 |
commit | 97edc164488352897eec1313b63d42aa06bb87a8 (patch) | |
tree | 52b547297601b998892faa884629969b815af631 /src/main.rs | |
download | bibdirsync-master.tar.gz bibdirsync-master.tar.bz2 |
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..ef8a6ea --- /dev/null +++ b/src/main.rs @@ -0,0 +1,10 @@ +// Copyright (C) 2019 Robin Krahl <robin.krahl@ireas.org> +// SPDX-License-Identifier: MIT + +#![warn(missing_docs, rust_2018_compatibility, rust_2018_idioms, unused)] + +//! A command-line tool that synchronizes BibTeX bibliographies and local directories. + +fn main() { + println!("Hello, world!"); +} |