Skip to content
Open
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
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ easy alternative.

## Usage
```rust
#[macro_use] extern crate log;
extern crate simplelog;
use log::{debug, error, info};

use simplelog::*;

Expand Down Expand Up @@ -55,7 +54,7 @@ and my_rust_binary.log
## Getting Started

Just add
```
```toml
[dependencies]
simplelog = "^0.12.0"
```
Expand All @@ -65,7 +64,7 @@ to your `Cargo.toml`

This crate can internally depend on a [paris](https://github.com/0x20F/paris) crate to provide support for ANSI color and styles.
To use this feature you need to set a _paris_ feature, like this:
```
```toml
[dependencies]
simplelog = { version = "^0.11.0", features = ["paris"] }
```
Expand Down