[package] name = "couchdb-orm" version = "0.1.6" authors = ["Ciro DE CARO "] edition = "2021" description = """\ couchdb-orm Copyright (C) 2020-2023 OpenToolAdd This program comes with ABSOLUTELY NO WARRANTY; This is free software, and you are welcome to redistribute it under certain conditions; type `show-license' for details. A CLI ORM to manage some Databases operations like migration, schema creation, etc.... For the moment it only handle CouchDB. """ license-file = "./LICENSE" repository = "https://gitlab.com/opentooladd/civil-add/couchdb-orm" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "couchdb_orm" path = "src/lib.rs" [[bin]] name = "couchdb-orm" path = "src/bin/main.rs" [dependencies] awc = "2.0.3" # actix-web client dotenv = "0.15.0" actix-rt = "1.1.1" #actix-runtime serde = { version = "1.0.117", features = ["derive"] } serde_json = "1.0.60" regex = "1.4.2" lazy_static = "1.4.0" futures = { version = "0.3.8", features = [] } thiserror = "1.0.22" structopt = { version = "0.3.21", features = ["paw"] } paw = "1.0.0" chrono = { version = "0.4.19", features = ["serde"] } dialoguer = "0.10.2" cmd_lib = "0.8.5" uuid = { version = "1.1.2", features = ["std", "v4"]} [dev-dependencies] actix-web = "3.3.2" wiremock = "0.3.0" couchdb-orm-meta = { path = "./_meta" } assert_cmd = "1.0.2" predicates = "1.0.6"