Skip to content

Commit 85fe726

Browse files
committed
README reworks and copyright dates update
1 parent 83a0261 commit 85fe726

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright (c) 2013-2014 The Rust Project Developers.
2-
Copyright (c) 2015-2016 The rust-hex Developers
2+
Copyright (c) 2015-2020 The rust-hex Developers
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ hex
22
===
33
[![Crates.io: hex](https://img.shields.io/crates/v/hex.svg)](https://crates.io/crates/hex)
44
[![Documentation](https://docs.rs/hex/badge.svg)](https://docs.rs/hex)
5-
[![Build Status](https://travis-ci.org/KokaKiwi/rust-hex.svg?branch=master)](https://travis-ci.org/KokaKiwi/rust-hex)
5+
[![Build Status (Travis)](https://travis-ci.org/KokaKiwi/rust-hex.svg?branch=master)](https://travis-ci.org/KokaKiwi/rust-hex)
6+
[![Build Status (Github Actions)](https://github.com/KokaKiwi/rust-hex/workflows/Test%20hex/badge.svg?master)](https://github.com/KokaKiwi/rust-hex/actions)
67

78
Encoding and decoding data into/from hexadecimal representation.
89

@@ -33,7 +34,8 @@ hex = "0.4"
3334
```
3435

3536
By default this will import `std`, if you are working in a
36-
[`no_std`](https://rust-embedded.github.io/book/intro/no-std.html) environment you can turn this off by adding the following
37+
[`no_std`](https://rust-embedded.github.io/book/intro/no-std.html)
38+
environment you can turn this off by adding the following
3739

3840
```toml
3941
[dependencies]
@@ -42,8 +44,11 @@ hex = { version = "0.4", default-features = false }
4244

4345
## Features
4446

45-
This crate has only one feature right now, `std`, which is enabled by default and can be
46-
disabled with `default-features = false` ([see here](#Installation)).
47+
- `std`:
48+
Enabled by default. Add support for Rust's libstd types.
49+
- `serde`:
50+
Disabled by default. Add support for `serde` de/serializing library.
51+
See the `serde` module documentation for usage.
4752

4853
## License
4954

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2013-2014 The Rust Project Developers.
2-
// Copyright (c) 2015-2018 The rust-hex Developers.
2+
// Copyright (c) 2015-2020 The rust-hex Developers.
33
//
44
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
55
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license

0 commit comments

Comments
 (0)