From 0fa3e38a38adf8e2aed54fcfd4a92740920f8d4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Mortensen?= Date: Sat, 28 Jul 2018 21:22:48 -0400 Subject: [PATCH] Add README, LICENSE, CHANGELOG MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Søren Mortensen --- CHANGELOG.md | 5 +++++ LICENSE | 21 +++++++++++++++++++++ README.md | 28 ++++++++++++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 CHANGELOG.md create mode 100644 LICENSE create mode 100644 README.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..64e4dba --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +## Changelog + +### 0.1.0 (Next) + +* Your contribution here. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..454e62c --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Søren Mortensen + +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. diff --git a/README.md b/README.md new file mode 100644 index 0000000..cea981d --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +# os_log + +A Rust [`log`](https://github.com/rust-lang-nursery/log) +implementation that logs messages using Apple's new [unified logging +system](https://developer.apple.com/documentation/os/logging?language=occ). + +## Usage + +Add this to your `Cargo.toml`: + +```toml +[dependencies] +os_log = { git = "https://github.com/econobox/os_log" } +``` + +and this to your crate root: + +```rust +extern crate os_log; +``` + +...and then don't do anything, because the library is a work in +progress and doesn't work yet :) + +## License + +`os_log` is licensed under the [MIT +License](https://opensource.org/licenses/MIT). -- 2.45.2