initial commit

This commit is contained in:
figsoda 2020-10-21 12:53:01 -04:00
parent 73bf208f07
commit 63e2fd5e96
6 changed files with 40 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

0
CHANGELOG.md Normal file
View file

5
Cargo.lock generated Normal file
View file

@ -0,0 +1,5 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "mmtc"
version = "0.1.0"

19
Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
cargo-features = ["strip"]
[package]
name = "mmtc"
version = "0.1.0"
authors = ["figsoda <figsoda@pm.me>"]
edition = "2018"
license = "MPL-2.0"
description = "Minimal mpd terminal client"
homepage = "https://github.com/figsoda/mmtc"
repository = "https://github.com/figsoda/mmtc"
readme = "README.md"
[dependencies]
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"

12
rustfmt.toml Normal file
View file

@ -0,0 +1,12 @@
condense_wildcard_suffixes = true
edition = "2018"
format_code_in_doc_comments = true
merge_imports = true
newline_style = "unix"
normalize_comments = true
normalize_doc_attributes = true
overflow_delimited_expr = false
reorder_impl_items = true
spaces_around_ranges = true
use_field_init_shorthand = true
use_try_shorthand = true

3
src/main.rs Normal file
View file

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