mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Update regorus core crate and all language bindings (ffi, java, python, wasm, ruby, csharp) to version 0.10.0. - Centralize C# package version via Directory.Packages.props - Remove redundant C# version suffix properties from project files - Regenerate all binding Cargo.lock files including Ruby - Fix xtask to read/write RegorusPackageVersion from Directory.Packages.props instead of parsing VersionPrefix from the csproj (which now uses an MSBuild property indirection) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
25 lines
702 B
TOML
25 lines
702 B
TOML
[package]
|
|
name = "regorusrb"
|
|
version = "0.10.0"
|
|
edition = "2024"
|
|
description = "Ruby bindings for Regorus - a fast, lightweight Rego interpreter written in Rust"
|
|
license = "MIT AND Apache-2.0 AND BSD-3-Clause"
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = ["ast", "cache", "coverage", "regorus/std", "regorus/full-opa", "regorus/allocator-memory-limits"]
|
|
ast = ["regorus/ast"]
|
|
cache = ["regorus/cache"]
|
|
coverage = ["regorus/coverage"]
|
|
|
|
[dependencies]
|
|
magnus = { version = "0.8.2" }
|
|
regorus = { path = "../../../..", default-features = false, features = ["arc"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
serde_magnus = "0.11.0"
|