orgize/orgize-sync/Cargo.toml

28 lines
752 B
TOML
Raw Normal View History

2019-09-15 05:09:59 +01:00
[package]
name = "orgize-sync"
version = "0.1.0"
authors = ["PoiScript <poiscript@gmail.com>"]
edition = "2018"
[package.metadata.docs.rs]
all-features = true
[features]
2019-09-15 07:39:45 +01:00
default = ["dotenv", "google_calendar", "toggl"]
2019-09-15 05:09:59 +01:00
google_calendar = []
toggl = []
[dependencies]
app_dirs = "1.2.1"
chrono = { version = "0.4.9", features = ["serde"] }
colored = "1.8.0"
2019-09-15 07:39:45 +01:00
dotenv = { version = "0.14.1", optional = true }
2019-09-15 05:09:59 +01:00
futures-preview = "=0.3.0-alpha.18"
isahc = { version = "0.7.3", default-features = false, features = ["json", "http2", "static-curl"] }
orgize = { path = "../orgize", default-features = false, features = ["chrono"] }
serde = { version = "1.0.100", features = ["derive"] }
serde_json = "1.0.40"
structopt = "0.3.1"
toml = "0.5.3"
url = "2.1.0"