From 6b92b5f6483acffdcf1c5ba3a75cf14476f71db7 Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Tue, 7 Apr 2020 14:23:01 -0400 Subject: Update README for 2018 edition --- README.md | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 7ed1a1f..2d7a5f5 100644 --- a/README.md +++ b/README.md @@ -22,34 +22,24 @@ To add `elefren` to your project, add the following to the elefren = "0.20" ``` -## Usage - -To use this crate in your project, add this to your crate root (lib.rs, main.rs, etc): - -```rust,ignore -extern crate elefren; -``` - ## Example In your `Cargo.toml`, make sure you enable the `toml` feature: ```toml [dependencies] -elefren = { version = "0.19", features = ["toml"] } +elefren = { version = "0.20", features = ["toml"] } ``` ```rust,no_run // src/main.rs -extern crate elefren; - use std::error::Error; use elefren::prelude::*; use elefren::helpers::toml; // requires `features = ["toml"]` use elefren::helpers::cli; -fn main() -> Result<(), Box> { +fn main() -> Result<(), Box> { let mastodon = if let Ok(data) = toml::from_file("mastodon-data.toml") { Mastodon::from(data) } else { @@ -63,7 +53,7 @@ fn main() -> Result<(), Box> { Ok(()) } -fn register() -> Result> { +fn register() -> Result> { let registration = Registration::new("https://mastodon.social") .client_name("elefren-examples") .build()?; -- cgit v1.2.3