20 lines
553 B
TOML
20 lines
553 B
TOML
[package]
|
|
name = "ontoref-blobs"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Content-addressed blob store (L1) for the ontoref verifiable substrate."
|
|
|
|
[features]
|
|
default = []
|
|
# Placeholder for an S3-compatible backend impl — schema deferred per D23.
|
|
s3 = []
|
|
# Placeholder for an OCI-registry backend impl — schema deferred per D23.
|
|
oci = []
|
|
|
|
[dependencies]
|
|
ontoref-types = { path = "../ontoref-types" }
|
|
blake3.workspace = true
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
tempfile.workspace = true
|