We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee86d38 commit 458ab93Copy full SHA for 458ab93
pyth-sdk/Cargo.toml
@@ -23,3 +23,5 @@ thiserror = "1.0.24"
23
24
[dev-dependencies]
25
serde_json = "1.0.79"
26
+quickcheck = "1"
27
+quickcheck_macros = "1"
pyth-sdk/src/lib.rs
@@ -1,3 +1,9 @@
1
+#[cfg(test)]
2
+extern crate quickcheck;
3
4
+#[macro_use(quickcheck)]
5
+extern crate quickcheck_macros;
6
+
7
use borsh::{
8
BorshDeserialize,
9
BorshSerialize,
0 commit comments