mirror of
https://codeberg.org/JasterV/granc.git
synced 2026-04-26 18:40:05 +00:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
36 lines
1,000 B
TOML
36 lines
1,000 B
TOML
[package]
|
|
authors = { workspace = true }
|
|
categories = ["network-programming"]
|
|
description = "Cranc gRPC CLI core library"
|
|
edition = { workspace = true }
|
|
homepage = { workspace = true }
|
|
keywords = ["grpc", "network-programming", "grpc-reflection"]
|
|
license = { workspace = true }
|
|
name = "granc_core"
|
|
publish = true
|
|
readme = "README.md"
|
|
repository = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
version = "0.6.0"
|
|
|
|
[lib]
|
|
name = "granc_core"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
futures-util = "0.3.31"
|
|
http = "1.4.0"
|
|
http-body = "1.0.1"
|
|
prost = { workspace = true }
|
|
prost-reflect = { workspace = true, features = ["serde"] }
|
|
prost-types = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = "2.0.18"
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
tokio-stream = "0.1.18"
|
|
tonic = { workspace = true }
|
|
tonic-reflection = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
echo-service = { path = "../echo-service" }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|