Skip to content

Commit cab3567

Browse files
committed
Set up Cargo
1 parent d8c929d commit cab3567

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
/Cargo.lock

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[package]
2+
name = "tgff"
3+
version = "0.0.1"
4+
authors = ["Ivan Ukhov <[email protected]>"]

src/lib.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//! The package provides a parser for the
2+
//! [TGFF](http://ziyang.eecs.umich.edu/~dickrp/tgff/) (Task Graphs For Free)
3+
//! format, which is a format for storing task graphs and accompanying data
4+
//! used in scheduling and allocation research.
5+
6+
#[test]
7+
fn it_works() {
8+
}

0 commit comments

Comments
 (0)