Files
letro-authentication-service/crates/policy/Cargo.toml
dependabot[bot] c24c15ac29 build(deps): bump wasmtime from 12.0.2 to 13.0.0
Bumps [wasmtime](https://github.com/bytecodealliance/wasmtime) from 12.0.2 to 13.0.0.
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v12.0.2...v13.0.0)

---
updated-dependencies:
- dependency-name: wasmtime
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-22 22:30:20 +02:00

34 lines
908 B
TOML

[package]
name = "mas-policy"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
anyhow.workspace = true
opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" }
serde.workspace = true
serde_json.workspace = true
schemars = {version = "0.8.15", optional = true }
thiserror.workspace = true
tokio = { version = "1.32.0", features = ["io-util", "rt"] }
tracing.workspace = true
wasmtime = { version = "13.0.0", default-features = false, features = ["async", "cranelift"] }
mas-data-model = { path = "../data-model" }
oauth2-types = { path = "../oauth2-types" }
[dev-dependencies]
tokio = { version = "1.32.0", features = ["fs", "rt", "macros"] }
[features]
cache = ["wasmtime/cache"]
jsonschema = ["dep:schemars"]
[[bin]]
name = "schema"
required-features = ["jsonschema"]