Initial: create imag-task/libimagtask directory
This commit is contained in:
parent
3f2114bf1f
commit
53aaf451be
4 changed files with 21 additions and 0 deletions
6
imag-task/Cargo.toml
Normal file
6
imag-task/Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[package]
|
||||||
|
name = "imag-task"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["mario <mario-krehl@gmx.de>"]
|
||||||
|
|
||||||
|
[dependencies]
|
3
imag-task/src/main.rs
Normal file
3
imag-task/src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
6
libimagtask/Cargo.toml
Normal file
6
libimagtask/Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[package]
|
||||||
|
name = "libimagtask"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["mario <mario-krehl@gmx.de>"]
|
||||||
|
|
||||||
|
[dependencies]
|
6
libimagtask/src/lib.rs
Normal file
6
libimagtask/src/lib.rs
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
#[test]
|
||||||
|
fn it_works() {
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue