commit
94fa5ca1de
@ -0,0 +1,3 @@
|
|||||||
|
/target
|
||||||
|
*~
|
||||||
|
Cargo.lock
|
@ -0,0 +1,18 @@
|
|||||||
|
[package]
|
||||||
|
name = "fmtconv"
|
||||||
|
description = "Convert between common formats"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2018"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[lib]
|
||||||
|
crate-type = ["rlib", "cdylib", "staticlib"]
|
||||||
|
|
||||||
|
[profile.release]
|
||||||
|
opt-level = 3
|
||||||
|
lto = "fat"
|
||||||
|
codegen-units = 1
|
||||||
|
panic = "unwind"
|
||||||
|
|
||||||
|
[dependencies]
|
@ -0,0 +1,6 @@
|
|||||||
|
//! `fmtconv` CLI
|
||||||
|
use fmtconv::*;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
#[test]
|
||||||
|
fn it_works() {
|
||||||
|
assert_eq!(2 + 2, 4);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue