You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix!: update qcs-api deps to use a >=9 version of jsonwebtoken (#483)
* chore: update qcs-api deps to use a >=9 version of jsonwebtoken
* chore: refactor to update to latest qcs-api-client
* chore: bump zerovec to fix yank crate error
* chore: fix lints
* chore: use default instead on unwrapping in new
* chore: make PyQcsClient load never async
* chore: update pyi definiteions
* chore: downgrade dirs to remove need for copyleft
* chore: fix test
Copy file name to clipboardExpand all lines: crates/lib/src/executable.rs
+10-10
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ use quil_rs::program::ProgramError;
44
44
/// async fn main() {
45
45
/// use std::num::NonZeroU16;
46
46
/// use qcs::qvm;
47
-
/// let qvm_client = qvm::http::HttpClient::from(&Qcs::load().await);
47
+
/// let qvm_client = qvm::http::HttpClient::from(&Qcs::load());
48
48
/// let mut result = Executable::from_quil(PROGRAM).with_qcs_client(Qcs::default()).with_shots(NonZeroU16::new(4).unwrap()).execute_on_qvm(&qvm_client).await.unwrap();
49
49
/// // "ro" is the only source read from by default if you don't specify a .read_from()
0 commit comments