From 11ff1c203819b709477cce6ff364dd827c312128 Mon Sep 17 00:00:00 2001 From: Pierre-Henri Symoneaux Date: Mon, 15 Aug 2022 16:30:18 +0200 Subject: [PATCH] Update dependencies --- Cargo.toml | 6 +++--- LICENSE.txt | 2 +- README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b86067654a..909fd86af3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "prettytable-rs" -version = "0.8.0" +version = "0.9.0" description = "A library for printing pretty formatted tables in terminal" homepage = "https://github.com/phsym/prettytable-rs" repository = "https://github.com/phsym/prettytable-rs" @@ -36,8 +36,8 @@ name = "prettytable" [dependencies] unicode-width = "0.1" -term = "0.6" +term = "0.7" lazy_static = "1" atty = "0.2" -encode_unicode = "0.3" +encode_unicode = "1" csv = { version = "1", optional = true } diff --git a/LICENSE.txt b/LICENSE.txt index a1f361b6b4..dfbd21799d 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2019, Pierre-Henri Symoneaux +Copyright (c) 2022, Pierre-Henri Symoneaux All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index d1fa0eaa29..eb97dede6a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A formatted and aligned table printer library for [Rust](https://www.rust-lang.org). -*Copyright © 2019 Pierre-Henri Symoneaux* +*Copyright © 2022 Pierre-Henri Symoneaux* > THIS SOFTWARE IS DISTRIBUTED WITHOUT ANY WARRANTY
> Check LICENSE.txt file for more information.
@@ -37,7 +37,7 @@ Include the library as a dependency to your project by adding the following line ```toml [dependencies] -prettytable-rs = "^0.8" +prettytable-rs = "^0.9" ``` The library requires at least `rust v1.32.0`.