summaryrefslogtreecommitdiff
path: root/vendor/hex/src/serde.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-15 16:37:08 -0600
committermo khan <mo@mokhan.ca>2025-07-17 16:30:22 -0600
commit45df4d0d9b577fecee798d672695fe24ff57fb1b (patch)
tree1b99bf645035b58e0d6db08c7a83521f41f7a75b /vendor/hex/src/serde.rs
parentf94f79608393d4ab127db63cc41668445ef6b243 (diff)
feat: migrate from Cedar to SpiceDB authorization system
This is a major architectural change that replaces the Cedar policy-based authorization system with SpiceDB's relation-based authorization. Key changes: - Migrate from Rust to Go implementation - Replace Cedar policies with SpiceDB schema and relationships - Switch from envoy `ext_authz` with Cedar to SpiceDB permission checks - Update build system and dependencies for Go ecosystem - Maintain Envoy integration for external authorization This change enables more flexible permission modeling through SpiceDB's Google Zanzibar inspired relation-based system, supporting complex hierarchical permissions that were difficult to express in Cedar. Breaking change: Existing Cedar policies and Rust-based configuration will no longer work and need to be migrated to SpiceDB schema.
Diffstat (limited to 'vendor/hex/src/serde.rs')
-rw-r--r--vendor/hex/src/serde.rs102
1 files changed, 0 insertions, 102 deletions
diff --git a/vendor/hex/src/serde.rs b/vendor/hex/src/serde.rs
deleted file mode 100644
index 335a1513..00000000
--- a/vendor/hex/src/serde.rs
+++ /dev/null
@@ -1,102 +0,0 @@
-//! Hex encoding with `serde`.
-#[cfg_attr(
- all(feature = "alloc", feature = "serde"),
- doc = r##"
-# Example
-
-```
-use serde::{Serialize, Deserialize};
-
-#[derive(Serialize, Deserialize)]
-struct Foo {
- #[serde(with = "hex")]
- bar: Vec<u8>,
-}
-```
-"##
-)]
-use serde::de::{Error, Visitor};
-use serde::Deserializer;
-#[cfg(feature = "alloc")]
-use serde::Serializer;
-
-#[cfg(feature = "alloc")]
-use alloc::string::String;
-
-use core::fmt;
-use core::marker::PhantomData;
-
-use crate::FromHex;
-
-#[cfg(feature = "alloc")]
-use crate::ToHex;
-
-/// Serializes `data` as hex string using uppercase characters.
-///
-/// Apart from the characters' casing, this works exactly like `serialize()`.
-#[cfg(feature = "alloc")]
-pub fn serialize_upper<S, T>(data: T, serializer: S) -> Result<S::Ok, S::Error>
-where
- S: Serializer,
- T: ToHex,
-{
- let s = data.encode_hex_upper::<String>();
- serializer.serialize_str(&s)
-}
-
-/// Serializes `data` as hex string using lowercase characters.
-///
-/// Lowercase characters are used (e.g. `f9b4ca`). The resulting string's length
-/// is always even, each byte in data is always encoded using two hex digits.
-/// Thus, the resulting string contains exactly twice as many bytes as the input
-/// data.
-#[cfg(feature = "alloc")]
-pub fn serialize<S, T>(data: T, serializer: S) -> Result<S::Ok, S::Error>
-where
- S: Serializer,
- T: ToHex,
-{
- let s = data.encode_hex::<String>();
- serializer.serialize_str(&s)
-}
-
-/// Deserializes a hex string into raw bytes.
-///
-/// Both, upper and lower case characters are valid in the input string and can
-/// even be mixed (e.g. `f9b4ca`, `F9B4CA` and `f9B4Ca` are all valid strings).
-pub fn deserialize<'de, D, T>(deserializer: D) -> Result<T, D::Error>
-where
- D: Deserializer<'de>,
- T: FromHex,
- <T as FromHex>::Error: fmt::Display,
-{
- struct HexStrVisitor<T>(PhantomData<T>);
-
- impl<'de, T> Visitor<'de> for HexStrVisitor<T>
- where
- T: FromHex,
- <T as FromHex>::Error: fmt::Display,
- {
- type Value = T;
-
- fn expecting(&self, f: &mut fmt::Formatter) -> fmt::Result {
- write!(f, "a hex encoded string")
- }
-
- fn visit_str<E>(self, data: &str) -> Result<Self::Value, E>
- where
- E: Error,
- {
- FromHex::from_hex(data).map_err(Error::custom)
- }
-
- fn visit_borrowed_str<E>(self, data: &'de str) -> Result<Self::Value, E>
- where
- E: Error,
- {
- FromHex::from_hex(data).map_err(Error::custom)
- }
- }
-
- deserializer.deserialize_str(HexStrVisitor(PhantomData))
-}