diff --git a/.gitignore b/.gitignore index d426fab..33566fa 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ bin lib build +target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..606713d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,11 @@ +[package] + +name = "toml" +version = "0.1.0" +authors = ["michaelneuma@gmail.com"] + +[[lib]] + +name = "toml" +crate_type = ["dylib", "staticlib"] +path = "src/toml/lib.rs" diff --git a/src/toml/lib.rs b/src/toml/lib.rs index 7ee4e1a..01a9ee7 100644 --- a/src/toml/lib.rs +++ b/src/toml/lib.rs @@ -1,4 +1,4 @@ -#![crate_id = "github.com/mneumann/rust-toml#toml"] +#![crate_id = "github.com/mneumann/rust-toml#toml:0.1"] #![desc = "A TOML configuration file parser for Rust"] #![license = "MIT"] #![crate_type = "lib"]