From 4310eb7e73aab76348caeae909ee8b7e7d9a3e3c Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Sat, 21 Sep 2019 23:15:48 -0400 Subject: [PATCH] Project documentation files --- Cargo.toml | 7 +++++-- LICENSE | 13 +++++++++++++ README.md | 5 +++++ 3 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 LICENSE create mode 100644 README.md diff --git a/Cargo.toml b/Cargo.toml index b58cdf3..c352206 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,8 +3,11 @@ name = "aeron-rs" version = "0.1.0" authors = ["Bradlee Speice "] edition = "2018" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +repository = "https://github.com/bspeice/aeron-rs" +readme = "README.md" +license = "Apache-2.0" +travis-ci = { repository = "bspeice/aeron-rs", branch = "master" } +maintenance = { status = "actively-developed" } [dependencies] aeron_driver-sys = { path = "./aeron_driver-sys" } \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b35b10e --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright 2019 Bradlee Speice + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..ab2fe79 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Aeron-rs + +![](https://img.shields.io/travis/bspeice/aeron-rs?style=flat-square) + +A Rust port of the [Aeron client](https://github.com/real-logic/Aeron). \ No newline at end of file