[package] name = "wasmer-deploy-schema" description = "Utilty crate that holds shared types and logic used in Wasmer Deploy." version = "0.0.21" readme = "README.md" homepage = "https://wasmer.io" # NOTE: Using a distinct license for the CLI, since it might be different from # other crates. license = "MIT" edition.workspace = true authors.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { workspace = true, features = ["derive"] } wcgi-host = { workspace = true, features = ["schema"] } time = { workspace = true, features = ["serde", "formatting", "parsing"] } serde_json = { workspace = true } url = { workspace = true, features = ["serde"] } uuid = { workspace = true, features = ["serde", "v4"] } bytesize = { workspace = true, features = ["serde"] } sparx = { workspace = true } once_cell = { workspace = true } rand_chacha = { version = "^0.3" } rand_core = { version = "0.6.4", features = [ "getrandom" ] } schemars = { version = "0.8.11", features = ["url", "uuid1"] } serde_path_to_error = "0.1.8" serde_yaml = { workspace = true } anyhow.workspace = true [dev-dependencies] pretty_assertions = { workspace = true }