Skip to content

Commit 228aee7

Browse files
committed
Remove Cargo.lock, add logo in macro docs and bump version to 0.1.1
1 parent 76d53b2 commit 228aee7

File tree

5 files changed

+9
-51
lines changed

5 files changed

+9
-51
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
target/
22
**/*.rs.bk
3+
Cargo.lock
34

45
.idea
56
*.iml

Cargo.lock

Lines changed: 0 additions & 48 deletions
This file was deleted.

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
[package]
22
name = "mocktopus"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["CodeSandwich <[email protected]>"]
55
description = "Mocking framework for Rust"
66
readme = "crates_io_readme.md"
7+
keywords = ["testing", "mocking", "tdd"]
8+
categories = ["development-tools::testing"]
79
repository = "https://github.com/CodeSandwich/Mocktopus"
810
license = "MIT"
11+
exclude = ["logo.png", "logo.svg", "README.md"]
912

1013
[badges]
1114
travis-ci = { repository = "CodeSandwich/Mocktopus" }
@@ -14,7 +17,7 @@ travis-ci = { repository = "CodeSandwich/Mocktopus" }
1417
doctest = false
1518

1619
[dependencies]
17-
mocktopus_macros = "0.1.0"
20+
mocktopus_macros = "0.1.1"
1821

1922
[workspace]
2023
members = ["macros"]

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mocktopus_macros"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["CodeSandwich <[email protected]>"]
55
description = "Mocktopus procedural macros"
66
readme = "crates_io_readme.md"

macros/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
//! [Mocktopus](https://docs.rs/mocktopus) procedural macros making items mockable
2+
#![doc(html_logo_url = "https://raw.githubusercontent.com/CodeSandwich/mocktopus/master/logo.png",
3+
html_favicon_url = "https://raw.githubusercontent.com/CodeSandwich/mocktopus/master/logo.png")]
24

35
#![feature(proc_macro)]
46

0 commit comments

Comments
 (0)