-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
36 lines (32 loc) · 843 Bytes
/
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
[package]
name = "openfga-rs"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Rust SDK for OpenFGA"
repository = "https://github.com/liamwh/openfga-rs.git"
authors = ["Liam Woodleigh-Hardinge", "liam.woodleigh@gmail.com"]
include = [
"/src",
"**/**.rs",
"LICENSE-APACHE",
"LICENSE-MIT",
"README.md",
"!tmp/**",
"/proto/**",
]
resolver = "2"
[dependencies]
tonic = { version = "~0.12", features = ["tls"] }
prost = { version = "~0.13", features = ["std", "prost-derive"] }
prost-types = "~0.13"
prost-wkt = "~0.6"
prost-wkt-types = "~0.6"
serde = { version = "~1.0", features = ["derive"] }
[build-dependencies]
tonic-build = { version = "~0.12" }
prost-wkt-build = "~0.6"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.metadata.cyclonedx]
included_dependencies = "all"