From af9fc6dfd1ba39eb50352fa9a4bbf4fc86290dde Mon Sep 17 00:00:00 2001 From: onyinyang Date: Mon, 5 Jun 2023 15:24:06 -0400 Subject: [PATCH] Add Lox-utils --- crates/lox-utils/Cargo.toml | 26 +++++++++++++ crates/lox-utils/src/lib.rs | 77 +++++++++++++++++++++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 crates/lox-utils/Cargo.toml create mode 100644 crates/lox-utils/src/lib.rs diff --git a/crates/lox-utils/Cargo.toml b/crates/lox-utils/Cargo.toml new file mode 100644 index 0000000..7877b08 --- /dev/null +++ b/crates/lox-utils/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "lox-utils" +version = "0.1.0" +authors = ["The Tor Project, Inc.", "Lindsey Tulloch , +} + +#[derive(Debug, Deserialize, Serialize)] +pub struct LoxCredential { + pub lox_credential: Lox, + pub bridgeline: Option, + pub invitation: Option, +}