Files
concrete/compiler/lib/Bindings/Rust/Cargo.toml
tmontaigu 6b0f6e9f10 feat(rust): print mlir string repr directly into a String
Instead of overriding the process stderr to get
the string representation from mlir we can can
directly capture in into a string using mlir's
printOperation.

Another problem with overriding stderr is that
each `#[test]` runs as a different thread meaning that
as soon as we have 2+ tests the tests could panic
due to conflicts/races between the different overrides.

This also moves the expected string directly into the test
as a literal.
2022-11-03 22:16:24 +01:00

9 lines
119 B
TOML

[package]
name = "concrete_compiler_rust"
version = "0.1.0"
edition = "2021"
[build-dependencies]
bindgen = "0.60.1"