20 releases (breaking)
0.21.0 | Sep 20, 2024 |
---|---|
0.20.0 | Jul 14, 2022 |
0.18.0 | Jun 24, 2022 |
0.15.0 | Mar 31, 2022 |
0.2.0 | Jul 30, 2021 |
#29 in #dfinity
305 downloads per month
Used in icx-asset
530KB
13K
SLoC
ic-asset
is a library for manipulating assets in an asset canister.
Useful links
lib.rs
:
A library for manipulating assets in an asset canister.
Example
use ic_agent::agent::Agent;
use ic_agent::identity::BasicIdentity;
use ic_utils::Canister;
use std::time::Duration;
let agent = Agent::builder()
.with_url(replica_url)
.with_identity(BasicIdentity::from_pem_file(pemfile)?)
.build()?;
let canister = Canister::builder()
.with_canister_id(canister_id)
.with_agent(&agent)
.build()?;
let logger = slog::Logger::root(slog::Discard, slog::o!());
ic_asset::sync(&canister, &[concat!(env!("CARGO_MANIFEST_DIR"), "assets/").as_ref()], false, &logger).await?;
Dependencies
~43–60MB
~1.5M SLoC