storage-client-interface 0.1.0

A Rust library for exposing the StorageClientInterface trait for interacting with a storage backend. Used by Evervault Cages.
Documentation
[env]
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true

[tasks.lint]
install_crate = "clippy"
command = "cargo"
args = ["clippy", "--", "-W", "clippy::pedantic"]

[tasks.format]
install_crate = "rustfmt"
command = "cargo"
args = ["fmt", "--check"]

[tasks.check]
command = "cargo"
args = ["check"]

[tasks.build]
command = "cargo"
args = ["build"]

[tasks.ci]
dependencies = ["lint","format","check","build"]