[package] name = "grammarly" version = "0.3.1" authors = ["Victor Polevoy "] edition = "2018" description = """ This crate allows you to check your texts for grammar using the grammarly service. """ repository = "https://github.com/vityafx/grammarly-rs" documentation = "https://docs.rs/grammarly/" readme = "README.md" license = "MIT" keywords = ["grammar", "english", "api", "request", "language"] categories = ["api-bindings"] [badges] travis-ci = { repository = "vityafx/grammarly-rs" } [dependencies] serde = { version = "1", features = ["derive"] } serde_json = "1" [dependencies.reqwest] optional = true version = "0.11" features = ["blocking", "json"] [features] default = ["client"] client = ["reqwest"]