diff options
| author | benj <benj@rse8.com> | 2022-12-30 15:57:36 -0800 |
|---|---|---|
| committer | benj <benj@rse8.com> | 2022-12-30 15:57:36 -0800 |
| commit | 8ca3433b2a4a82723e00e64b1e5aff0b1bed95b3 (patch) | |
| tree | 1ff85fd9fbd94a5559f9dbac755973fd58b31f28 /crates/secd/Cargo.toml | |
| parent | f0ea9ecd17b03605d747044874a26e1bd52c0ee1 (diff) | |
| download | secdiam-8ca3433b2a4a82723e00e64b1e5aff0b1bed95b3.tar secdiam-8ca3433b2a4a82723e00e64b1e5aff0b1bed95b3.tar.gz secdiam-8ca3433b2a4a82723e00e64b1e5aff0b1bed95b3.tar.bz2 secdiam-8ca3433b2a4a82723e00e64b1e5aff0b1bed95b3.tar.lz secdiam-8ca3433b2a4a82723e00e64b1e5aff0b1bed95b3.tar.xz secdiam-8ca3433b2a4a82723e00e64b1e5aff0b1bed95b3.tar.zst secdiam-8ca3433b2a4a82723e00e64b1e5aff0b1bed95b3.zip | |
impl authZ write and check (depends on spicedb for now)
Diffstat (limited to '')
| -rw-r--r-- | crates/secd/Cargo.toml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/crates/secd/Cargo.toml b/crates/secd/Cargo.toml index 350cfd1..1eb30b1 100644 --- a/crates/secd/Cargo.toml +++ b/crates/secd/Cargo.toml @@ -15,6 +15,8 @@ lazy_static = "1.4" lettre = "0.10.1" log = "0.4" openssl = "0.10.42" +prost = "0.9" +prost-types = "0.9.0" rand = "0.8" reqwest = { version = "0.11.13", features = ["json"] } serde = "1" @@ -27,5 +29,10 @@ sqlx = { path = "../../../sqlx", features = [ "runtime-async-std-native-tls", "p time = { version = "0.3", features = [ "serde" ] } thiserror = "1.0" tokio = { version = "1.23.0", feautres = ["rt", "macros"] } +tonic = "0.6.2" url = "2.3.1" -uuid = { version = "1.2", features = ["v4", "serde"]}
\ No newline at end of file +uuid = { version = "1.2", features = ["v4", "serde"]} + +[build-dependencies] +glob = "0.3.0" +tonic-build = { version = "0.6.2", features = ["prost"] } |
