mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
- Fix warning due to use of deprecated function. This was causing a build issue in the hava and csharp bindings - Lock use of csbindgen@1.9.0 The newer version 1.9.2 causes a "type of namespace C could not be fond" error In the generated code, struct inherits from C instead of uint Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
25 lines
562 B
TOML
25 lines
562 B
TOML
[package]
|
|
name = "regorus-ffi"
|
|
version = "0.2.1"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
regorus = { path = "../..", default-features = false }
|
|
serde_json = "1.0.113"
|
|
|
|
[features]
|
|
default = ["ast", "std", "coverage", "regorus/arc", "regorus/full-opa"]
|
|
ast = ["regorus/ast"]
|
|
std = ["regorus/std"]
|
|
coverage = ["regorus/coverage"]
|
|
custom_allocator = []
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.26.0"
|
|
csbindgen = "=1.9.0"
|