Skip to content

Commit

Permalink
refactor(serde): Use derive as feature of serde, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
klausi committed Feb 23, 2019
1 parent d124596 commit 2fa5215
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 4 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mastodon-twitter-sync"
version = "1.1.0"
authors = ["Klaus Purer <klaus.purer@gmail.com>"]
version = "1.2.0"
authors = ["Klaus Purer <klaus.purer@protonmail.ch>"]
edition = "2018"

[dependencies]
Expand All @@ -20,8 +20,7 @@ mammut = { git = "https://github.com/klausi/Mammut", rev = "2ed8d6b9a45df8b111f6
mime = ">=0.3.13"
regex = ">=0.2.2"
reqwest = ">=0.9.5"
serde = ">=1.0"
serde_derive = ">=1.0.19"
serde = { version = ">=1.0", features = ["derive"] }
tokio = ">=0.1.15"
tempfile = "3"
toml = ">=0.4.5"
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use chrono::prelude::*;
use mammut::Data;
use serde_derive::{Deserialize, Serialize};
use serde::{Deserialize, Serialize};
use std::collections::BTreeMap;
use std::fs::remove_file;
use std::fs::File;
Expand Down

0 comments on commit 2fa5215

Please sign in to comment.