From 3461dc0bc898e7b8034ad6101eff885107c5debd Mon Sep 17 00:00:00 2001 From: Aaron Weiss Date: Sun, 7 Jun 2015 18:45:59 -0400 Subject: [PATCH] Added more information about specification compliance to README.md. --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a28d0df..683b2e5 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,15 @@ # irc [![Build Status](https://travis-ci.org/aatxe/irc.svg?branch=master)](https://travis-ci.org/aatxe/irc) [![Crates.io](https://img.shields.io/crates/v/irc.svg)](https://crates.io/crates/irc) # -A thread-safe IRC library in Rust. The client portion is compliant with -[RFC 2812](http://tools.ietf.org/html/rfc2812) and includes some additional, common features. The -server portion is still a work in progress. You can find up-to-date, ready-to-use documentation -online [here](http://aatxe.github.io/irc/irc/). The documentation is generated with the -default features. These are, however, strictly optional and can be disabled accordingly. +A thread-safe IRC library in Rust. The client portion is compliant with +[RFC 2812](http://tools.ietf.org/html/rfc2812), [IRCv3.1](http://ircv3.net/irc/3.1.html), +[IRCv3.2](http://ircv3.net/irc/3.2.html), and includes some additional, common features. The server +portion is still a work in progress. You can find up-to-date, ready-to-use documentation online +[here](http://aatxe.github.io/irc/irc/). The documentation is generated with the default features. +These are, however, strictly optional and can be disabled accordingly. ## Getting Started ## To start using this library with cargo, you can simply add `irc = "*"` to your dependencies to your -Cargo.toml file. You'll likely want to take a look at some of the examples, as well as the +Cargo.toml file. You'll likely want to take a look at some of the examples, as well as the documentation. You'll also be able to find a small template to get a feel for the library. ## Getting Started with Bots ##