File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
target_chains/solana/pyth_solana_receiver_sdk/src Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 11
11
steps :
12
12
- name : Checkout sources
13
13
uses : actions/checkout@v2
14
+ - name : Install Rust
15
+ uses : actions-rs/toolchain@v1
16
+ with :
17
+ toolchain : stable
18
+ default : true
19
+ profile : minimal
14
20
15
- - run : cargo publish --token ${CARGO_REGISTRY_TOKEN}
21
+ - run : cargo +stable-x86_64-unknown-linux-gnu publish --token ${CARGO_REGISTRY_TOKEN}
16
22
env :
17
23
CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
18
24
working-directory : " target_chains/solana/pyth_solana_receiver_sdk"
Original file line number Diff line number Diff line change
1
+ pub use pythnet_sdk:: messages:: {
2
+ FeedId ,
3
+ PriceFeedMessage ,
4
+ } ;
1
5
use {
2
6
crate :: {
3
7
check,
7
11
borsh:: BorshSchema ,
8
12
* ,
9
13
} ,
10
- pythnet_sdk:: messages:: {
11
- FeedId ,
12
- PriceFeedMessage ,
13
- } ,
14
14
solana_program:: pubkey:: Pubkey ,
15
15
} ;
16
16
You can’t perform that action at this time.
0 commit comments