Skip to content
This repository was archived by the owner on Oct 7, 2024. It is now read-only.
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
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "Inflector"
name = "inflector"
version = "0.11.4"
authors = ["Josh Teeter<[email protected]>"]
include = [
Expand All @@ -19,7 +19,7 @@ keywords = ["pluralize", "Inflector", "camel", "snake", "inflection"]
categories = ["text-processing", "value-formatting"]

[badges]
travis-ci = { repository = "whatisinternet/Inflector" }
travis-ci = { repository = "whatisinternet/inflector" }

[features]
default = ['heavyweight']
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ Documentation can be found here at the README or via rust docs below.

```toml
[dependencies]
Inflector = "*"
inflector = "*"
```

### Compile yourself:

1. Install [Rust and cargo](http://doc.crates.io/)
2. git clone https://github.com/whatisinternet/Inflector
2. git clone https://github.com/whatisinternet/inflector
3. Library: cd inflector && cargo build --release --lib
4. You can find the library in target/release

Expand Down Expand Up @@ -113,15 +113,15 @@ If the project doesn't require singularize, pluralize, class, table, demodulize,
deconstantize. Then in your `cargo.toml` you may wish to specify:

```toml
[dependencies.Inflector]
[dependencies.inflector]
version = "*"
default-features = false
```

Or

```toml
Inflector = {version="*", default-features=false}
inflector = {version="*", default-features=false}

```

Expand Down