[package] name = "cakerabbit-core" version = "0.1.3" authors = ["halokid "] edition = "2018" description = "A rust microservice framework, this is the core kernel for the project." documentation = "https://docs.rs/crate/cakerabbit-core" repository = "https://github.com/halokid/cakerabbit-core" license = "MIT/Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] futures = "0.3" tokio-util = { version = "0.6", features = ["codec", "compat"] } rmpv = "0.4" bytes = "1.0" log = "0.4" env_logger = "0.8" tokio = { version = "1.4", features = ["rt", "rt-multi-thread"] } consul-rs-plus = { path = "../consul-rs-plus", version = "0.1.7" } #consul-rs-plus = "0.1.6" local_ipaddress = "0.1.3" serde = { version = "1.0.126",features = ["derive"]} serde_json = "1.0.40" rand = "0.8.4" actix-web = "3" ctrlc = "3.2.1" lazy_static = "1.4.0" [dev-dependencies] env_logger = "0.8" chrono = "0.4" tokio = { version = "1.4", features = ["macros", "net", "time"] } [profile.dev] incremental = true [[example]] name = "echoclient" path = "examples/echo_use_localsource/client_use_cake.rs" [[example]] name = "echoserver" path = "examples/echo_use_localsource/server_use_cake.rs" [[example]] name = "echoserver_bigdata" path = "examples/echo_use_localsource/server_use_cake_rspbigdata.rs" [[example]] name = "echoserver_httpapi" path = "examples/echo_use_localsource/server_use_cake_httpapi.rs"