[package]
edition = "2024"
rust-version = "1.89"
name = "granc_core"
version = "0.6.0"
authors = ["Victor MartÃnez Montané <jaster.victor@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cranc gRPC CLI core library"
homepage = "https://github.com/JasterV/granc"
readme = "README.md"
keywords = [
"grpc",
"network-programming",
"grpc-reflection",
]
categories = ["network-programming"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/JasterV/granc"
resolver = "2"
[lib]
name = "granc_core"
path = "src/lib.rs"
[[test]]
name = "echo_service_impl"
path = "tests/echo_service_impl.rs"
[[test]]
name = "granc_client_offline_test"
path = "tests/granc_client_offline_test.rs"
[[test]]
name = "granc_client_online_test"
path = "tests/granc_client_online_test.rs"
[[test]]
name = "granc_client_online_without_reflection_test"
path = "tests/granc_client_online_without_reflection_test.rs"
[[test]]
name = "reflection_client_test"
path = "tests/reflection_client_test.rs"
[dependencies.futures-util]
version = "0.3.31"
[dependencies.http]
version = "1.4.0"
[dependencies.http-body]
version = "1.0.1"
[dependencies.prost]
version = "0.14"
[dependencies.prost-reflect]
version = "0.16.3"
features = ["serde"]
[dependencies.prost-types]
version = "0.14"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.49.0"
features = ["sync"]
[dependencies.tokio-stream]
version = "0.1.18"
[dependencies.tonic]
version = "0.14"
[dependencies.tonic-reflection]
version = "0.14"
[dev-dependencies.tokio]
version = "1.49.0"
features = [
"rt-multi-thread",
"macros",
]