From aa52e632b866b51d455787a96bcd2f5a63b7ac89 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 19 Aug 2019 00:19:38 -0400 Subject: move ynab-api to its own repository --- Cargo.toml | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index a153006..ee8992e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,17 @@ [package] -name = "ynab-reimbursements" -version = "0.1.0" -authors = ["Jesse Luehrs "] -edition = "2018" +name = "ynab-api" +version = "1.0.0" +authors = ["Jesse Luehrs ", "You Need A Budget, LLC"] +description = "OpenAPI-generated API bindings for the YNAB API" +repository = "https://git.tozt.net/ynab-api" +license = "Apache-2.0" + [dependencies] -cursive = "0.12" -# cursive = { version = "0.12", default-features = false, features = ["crossterm-backend"] } -cursive_table_view = "0.10" -directories = "2.0" -snafu = "0.4" -ynab-api = { path = "ynab-api" } +serde = "^1.0" +serde_derive = "^1.0" +serde_json = "^1.0" +url = "1.5" +reqwest = "~0.9" + +[dev-dependencies] -- cgit v1.2.3-54-g00ecf