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

View File

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

View File

@ -24,7 +24,7 @@ cfg_client! {
pub mod 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;