From 7d53e298caabca0aa9969c587d7ab5934c9ef859 Mon Sep 17 00:00:00 2001 From: Aaron Weiss Date: Thu, 6 Nov 2014 21:38:37 -0500 Subject: [PATCH] Added license attribute to lib.rs. --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 330f3df..8ba9ecc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,7 @@ //! A simple, thread-safe IRC client library. #![crate_name = "irc"] #![crate_type = "lib"] +#![license = "Public Domain"] #![unstable] #![feature(if_let)]