This commit is contained in:
Conner Gallagher 2023-06-13 16:21:13 -06:00
parent 1c2e805187
commit 2f69aaf86a
3 changed files with 11 additions and 11 deletions

View File

@ -3599,9 +3599,9 @@ checksum = "ab16ced94dbd8a46c82fd81e3ed9a8727dac2977ea869d217bcc4ea1f122e81f"
[[package]] [[package]]
name = "switchboard-common" name = "switchboard-common"
version = "0.1.1" version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e684527505239852153ac6b4b27789815441a2b840564466cb6e47b25f543b3" checksum = "c717ee6e5c850932313872d3be3a3d8f095fb306da7a522f89e0e328bcc05a64"
dependencies = [ dependencies = [
"getrandom 0.2.9", "getrandom 0.2.9",
"hex", "hex",
@ -3613,7 +3613,7 @@ dependencies = [
[[package]] [[package]]
name = "switchboard-solana" name = "switchboard-solana"
version = "0.3.3" version = "0.3.5"
dependencies = [ dependencies = [
"anchor-lang", "anchor-lang",
"anchor-spl", "anchor-spl",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "switchboard-solana" name = "switchboard-solana"
version = "0.3.3" version = "0.3.5"
edition = "2021" edition = "2021"
description = "A Rust library to interact with Switchboard accounts." description = "A Rust library to interact with Switchboard accounts."
readme = "README.md" readme = "README.md"
@ -21,15 +21,15 @@ no-entrypoint = []
cpi = ["no-entrypoint"] cpi = ["no-entrypoint"]
client = [ client = [
"switchboard-common/sgx", "switchboard-common/sgx",
"dep:solana-client", "solana-client",
"dep:bincode", "bincode",
"dep:sgx-quote", "sgx-quote",
"dep:cron", "cron",
"dep:chrono" "chrono"
] ]
[dependencies] [dependencies]
switchboard-common = { version = "0.1.1" } switchboard-common = { version = "0.1.3" }
rust_decimal = "^1" rust_decimal = "^1"
bytemuck = "^1" bytemuck = "^1"
superslice = "1" superslice = "1"

View File

@ -24,7 +24,7 @@ cfg_client! {
pub mod sgx; pub mod sgx;
pub use sgx::*; pub use sgx::*;
pub use switchboard_common::{FunctionResult, Chain, Error as SwitchboardClientError}; // pub use switchboard_common::{FunctionResult, Chain, Error as SwitchboardClientError};
} }
pub use anchor_lang as anchor; pub use anchor_lang as anchor;