-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 961 Bytes
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 961 Bytes
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 = "prescience"
version = "0.1.0"
edition = "2021"
description = "An idiomatic Rust client library for SpiceDB"
license = "Apache-2.0"
repository = "https://github.com/rawkode/prescience"
keywords = ["spicedb", "authzed", "authorization", "zanzibar", "grpc"]
categories = ["authentication", "api-bindings"]
[features]
default = []
watch = []
experimental = []
serde = ["dep:serde"]
tls-rustls = ["tonic/tls-webpki-roots"]
tls-native = ["tonic/tls"]
[dependencies]
async-stream = "0.3"
futures-core = "0.3"
http = "1"
prost = "0.13"
prost-types = "0.13"
serde = { version = "1", features = ["derive"], optional = true }
thiserror = "2"
tokio = { version = "1", features = ["macros"] }
tokio-stream = "0.1"
tonic = { version = "0.12", features = ["transport"] }
tower = "0.5"
tracing = "0.1"
[build-dependencies]
tonic-build = "0.12"
[dev-dependencies]
testcontainers = "0.27"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }