Skip to content

Commit

Permalink
Remove Cargo.lock, add logo in macro docs and bump version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeSandwich committed Sep 5, 2017
1 parent 76d53b2 commit 228aee7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 51 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
target/
**/*.rs.bk
Cargo.lock

.idea
*.iml
48 changes: 0 additions & 48 deletions Cargo.lock

This file was deleted.

7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
[package]
name = "mocktopus"
version = "0.1.0"
version = "0.1.1"
authors = ["CodeSandwich <[email protected]>"]
description = "Mocking framework for Rust"
readme = "crates_io_readme.md"
keywords = ["testing", "mocking", "tdd"]
categories = ["development-tools::testing"]
repository = "https://github.com/CodeSandwich/Mocktopus"
license = "MIT"
exclude = ["logo.png", "logo.svg", "README.md"]

[badges]
travis-ci = { repository = "CodeSandwich/Mocktopus" }
Expand All @@ -14,7 +17,7 @@ travis-ci = { repository = "CodeSandwich/Mocktopus" }
doctest = false

[dependencies]
mocktopus_macros = "0.1.0"
mocktopus_macros = "0.1.1"

[workspace]
members = ["macros"]
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mocktopus_macros"
version = "0.1.0"
version = "0.1.1"
authors = ["CodeSandwich <[email protected]>"]
description = "Mocktopus procedural macros"
readme = "crates_io_readme.md"
Expand Down
2 changes: 2 additions & 0 deletions macros/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//! [Mocktopus](https://docs.rs/mocktopus) procedural macros making items mockable
#![doc(html_logo_url = "https://raw.githubusercontent.com/CodeSandwich/mocktopus/master/logo.png",
html_favicon_url = "https://raw.githubusercontent.com/CodeSandwich/mocktopus/master/logo.png")]

#![feature(proc_macro)]

Expand Down

0 comments on commit 228aee7

Please sign in to comment.