diff options
author | Daniel Edgecumbe <git@esotericnonsense.com> | 2019-10-27 22:17:09 +0100 |
---|---|---|
committer | Daniel Edgecumbe <git@esotericnonsense.com> | 2019-10-28 01:04:14 +0100 |
commit | 3d693df6087ba717caa97325839ddc7eb3d24799 (patch) | |
tree | 6570931830d3c0478cda57ad73f103353bc3a7a9 | |
parent | 81e8e2c86519f48206a9d6961a200eb4b31ddc3a (diff) |
Emphasise lack of warranty
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | src/lib.rs | 8 |
4 files changed, 18 insertions, 2 deletions
@@ -61,7 +61,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "botfair" -version = "0.3.0" +version = "0.3.99" dependencies = [ "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1,6 +1,6 @@ [package] name = "botfair" -version = "0.3.0" +version = "0.3.99" description = "rust bindings for Betfair's SportsAPING" keywords = ["betfair", "jsonrpc", "aping", "sports", "betting"] repository = "https://git.esotericnonsense.com/pub/botfair.git" @@ -8,6 +8,14 @@ https://git.esotericnonsense.com/pub/botfair.git - main repository https://github.com/esotericnonsense/botfair.git - github repo, for PRs etc +## Warranty + +> This program is distributed in the hope that it will be useful, +> but WITHOUT ANY WARRANTY; without even the implied warranty of +> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +Paid support, consulting, and contracting services are available. + ## Contact Daniel Edgecumbe (esotericnonsense) @@ -22,6 +22,14 @@ //! The BFClient class implements Sync and so can safely be wrapped in an Arc //! for multithreaded use with the same session token. //! +//! ## Warranty +//! +//! > This program is distributed in the hope that it will be useful, +//! > but WITHOUT ANY WARRANTY; without even the implied warranty of +//! > MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +//! +//! Paid support, consulting, and contracting services are available. +//! //! ## Example //! Note that `botfair` requires your certificate to be in `pfx` format. //! In order to achieve this given a key and crt file, you can use the |