summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorPierre-Henri Symoneaux <pierre.henri.symoneaux@gmail.com>2018-04-18 23:18:56 +0200
committerPierre-Henri Symoneaux <pierre.henri.symoneaux@gmail.com>2018-04-18 23:18:56 +0200
commit34c7a91713034e683a727f3650b34d9e392f19e3 (patch)
treefcf88ef3ce68e2a6a91f0bc43188f69d84870b1b /README.md
parent1a6c738166f839d80c683c370b787a00ef333fad (diff)
Updated README and examples with removal of the term crate
Following changes made in #78
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/README.md b/README.md
index d247972..c5b07e9 100644
--- a/README.md
+++ b/README.md
@@ -39,8 +39,7 @@ Include the library as a dependency to your project by adding the following line
prettytable-rs = "^0.6"
```
-The library requires at least `rust v1.9.0` in order to build,
-while `master` branch only builds starting from `rust v1.13.0`
+The library requires at least `rust v1.18.0`.
## Basic usage
@@ -146,12 +145,11 @@ Rows may have different numbers of cells. The table will automatically adapt to
Tables can have a styled output with background and foreground colors, bold and italic as configurable settings, thanks to the `term` crate.
-`term` style attributes can be used
+`term` style attributes are reexported
- directly:
```rust
- extern crate term;
- use term::{Attr, color};
+ use prettytable::{Attr, color};
/* ... */