Skip to content

Commit

Permalink
fix: update app-rust template
Browse files Browse the repository at this point in the history
  • Loading branch information
dOrgJelli committed Oct 2, 2023
1 parent ba86766 commit f7dcc4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/templates/app/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ include = [
]

[dependencies]
polywrap = { version = "~0.1.8" }
polywrap = { version = "~0.1.9-beta.2" }
serde = {version = "1.0.145", features = ["derive"]}

[dev-dependencies]
2 changes: 1 addition & 1 deletion packages/templates/app/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use wrap::types::*;
pub fn main() {
let ipfs_provider = "https://ipfs.io";
let cid = "Qmc5gCcjYypU7y28oCALwfSvxCBskLuPKWpK4qpterKC7z";
let ipfs = IpfsModule::new(None);
let ipfs = Ipfs::new(None);

let data = ipfs.cat(&IpfsArgsCat{
cid: cid.to_string(),
Expand Down

0 comments on commit f7dcc4b

Please sign in to comment.