proper licensing, added README.
This commit is contained in:
parent
5516dc630d
commit
b24b5b46a3
|
@ -11,4 +11,4 @@
|
||||||
build
|
build
|
||||||
Makefile
|
Makefile
|
||||||
*-test
|
*-test
|
||||||
doc
|
doc
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
- secure: i8Ijk6g4/26e3e7+r2OeGAPSP8G8O9P50JibW1omJ0j0ixXhyhPoY2bch3CGhnOu44dI5O31IIbjJJ+iEMp29xQBvkv9YpxAI+hIzOP+XAH6GCYxUDiBVcDoWrXTj+wU6/veuvjLCunu4eRHlskrgJbZXhUVODYzJuLgsN8Ou0w=
|
||||||
before_install:
|
before_install:
|
||||||
- yes | sudo add-apt-repository ppa:hansjorg/rust
|
- yes | sudo add-apt-repository ppa:hansjorg/rust
|
||||||
- sudo apt-get update
|
- sudo apt-get update
|
||||||
|
@ -10,3 +13,5 @@ script:
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
|
after_script:
|
||||||
|
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2014, Kang Seonghoon.
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
|
@ -0,0 +1,25 @@
|
||||||
|
Rust-chrono
|
||||||
|
===========
|
||||||
|
|
||||||
|
[![Rust-chrono on Travis CI][travis-image]][travis]
|
||||||
|
|
||||||
|
[travis-image]: https://travis-ci.org/lifthrasiir/rust-chrono.png
|
||||||
|
[travis]: https://travis-ci.org/lifthrasiir/rust-chrono
|
||||||
|
|
||||||
|
Date and time handling for Rust.
|
||||||
|
|
||||||
|
Design Goals
|
||||||
|
------------
|
||||||
|
|
||||||
|
* 1-to-1 correspondence with ISO 8601.
|
||||||
|
* Timezone-aware by default.
|
||||||
|
* Space efficient.
|
||||||
|
* Moderate lookup table size, should not exceed a few KBs.
|
||||||
|
* Avoid divisions as long as possible.
|
||||||
|
|
||||||
|
References
|
||||||
|
----------
|
||||||
|
|
||||||
|
* https://github.com/mozilla/rust/wiki/Lib-datetime
|
||||||
|
* https://github.com/luisbg/rust-datetime/wiki/Use-Cases
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
// This is a part of rust-chrono.
|
||||||
|
// Copyright (c) 2014, Kang Seonghoon.
|
||||||
|
// See README.md and LICENSE.txt for details.
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* ISO 8601 calendar date.
|
* ISO 8601 calendar date.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
// This is a part of rust-chrono.
|
||||||
|
// Copyright (c) 2014, Kang Seonghoon.
|
||||||
|
// See README.md and LICENSE.txt for details.
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* ISO 8601 date and time.
|
* ISO 8601 date and time.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
// This is a part of rust-chrono.
|
||||||
|
// Copyright (c) 2014, Kang Seonghoon.
|
||||||
|
// See README.md and LICENSE.txt for details.
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* ISO 8601 duration.
|
* ISO 8601 duration.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
|
// This is a part of rust-chrono.
|
||||||
|
// Copyright (c) 2014, Kang Seonghoon.
|
||||||
|
// See README.md and LICENSE.txt for details.
|
||||||
|
|
||||||
#![crate_id = "chrono#0.1.0"]
|
#![crate_id = "chrono#0.1.0"]
|
||||||
#![crate_type = "lib"]
|
#![crate_type = "lib"]
|
||||||
|
#![comment = "Date and time library for Rust"]
|
||||||
|
#![license = "MIT"]
|
||||||
|
|
||||||
#![feature(globs, macro_rules)]
|
#![feature(globs, macro_rules)]
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
// This is a part of rust-chrono.
|
||||||
|
// Copyright (c) 2014, Kang Seonghoon.
|
||||||
|
// See README.md and LICENSE.txt for details.
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* ISO 8601 time.
|
* ISO 8601 time.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue