[package] name = "odata_client" version = "0.1.0" authors = ["Toby Dimmick "] edition = "2018" description = "Client for accessing OData APIs" license = "Apache-2.0" documentation = "https://docs.rs/odata_client/" repository = "https://gitlab.com/tobz1000/odata_client_rs" [dependencies] serde = { version = "^1.0", features = ["derive"] } uuid = { version = "^0.8", features = ["serde"] } chrono = { version = "^0.4", features = ["serde"] } anyhow = "^1.0" reqwest = { version = "^0.11", features = ["json"] } # Just including this crate allows some chrono types to deserialise odata_client_util = { version = "^0.1", path = "../odata_client_util" } serde_with = "^1.6" iso8601 = "^0.4" odata_client_derive = { version = "^0.1", path = "../odata_client_derive" } # Explicitly included so that documentation links to codegen crate are rendered correctly. Doesn't # affect build time as it's a dependency of the derive crate anyway. odata_client_codegen = { version = "^0.1", path = "../odata_client_codegen" } [dev-dependencies] tokio = { version = "^1.1", features = ["macros"] } [lib] name = "odata_client"