Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Cargo intergration. #24

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
bin
lib
build
target
11 changes: 11 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]

name = "toml"
version = "0.1.0"
authors = ["[email protected]"]

[[lib]]

name = "toml"
crate_type = ["dylib", "staticlib"]
path = "src/toml/lib.rs"
2 changes: 1 addition & 1 deletion src/toml/lib.rs
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down