Toshiki Teramura
Toshiki Teramura
The above error is fixed in #30, but nightly rust cannot be used because of #36
There is another definition called ORAS Artifact which defines `application/vnd.cncf.oras.artifact.manifest.v1+json` https://github.com/oras-project/artifacts-spec/blob/main/artifact-manifest.md
ORAS Artifact is experimentally supported by Azure container registry https://learn.microsoft.com/ja-jp/azure/container-registry/container-registry-oras-artifacts
OCI Artifact manifest is still in draft, introduced in OCI image spec [1.1.0-rc1](https://github.com/opencontainers/image-spec/compare/67d2d56..4728b6e#diff-8e2b59abf3f94bb16c585f9274aec69864e81c511f033011f8efbe1caf9e268e)
OCI Image spec 1.1.0 has been released https://github.com/opencontainers/image-spec/releases/tag/v1.1.0, and above contents are out-dated https://github.com/containers/oci-spec-rs/issues/144
This is not a necessary feature. Drop from 0.1.0
We have to determine is where image configure and index.json are stored.
I agree to introduce such trait. My current generic code typically has the following form: ```rust pub fn func(a: &mut ArrayBase, b: &ArrayBase) where A: LinalgScalar, S1: DataMut, S2: Data,...