-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
38 lines (34 loc) · 1.19 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "spire-api"
# When releasing to crates.io:
# - Update CHANGELOG.md.
# - Create a new tag
version = "0.3.2"
edition = "2021"
authors = ["Max Lambrecht <[email protected]>"]
description = "Rust library for the SPIRE APIs"
license = "Apache-2.0"
repository = "https://github.com/maxlambrecht/rust-spiffe"
documentation = "https://docs.rs/spire-api"
readme = "README.md"
categories = ["cryptography"]
keywords = ["SPIFFE", "SPIRE"]
[dependencies]
spiffe = { version = "0.6.3", path = "../spiffe", default-features = false, features = ["spiffe-types"] }
bytes = { version = "1", features = ["serde"] }
tonic = { version = "0.12.3", default-features = false, features = ["prost", "codegen", "transport"]}
prost = { version = "0.13"}
prost-types = {version = "0.13"}
tokio = { "version" = "1", features = ["net"]}
tokio-stream = "0.1"
tower = { version = "0.5", features = ["util"] }
hyper-util = { version = "0.1.8", default-features = false }
[dev-dependencies]
tokio = { version = "1", features = ["macros"] }
once_cell = "1"
[build-dependencies]
tonic-build = { version = "0.12.3", default-features = false, features = ["prost"] }
prost-build = "0.13"
anyhow = "1"
[features]
integration-tests = []