45 lines
899 B
TOML
45 lines
899 B
TOML
[workspace]
|
|
members = [
|
|
]
|
|
|
|
[package]
|
|
name = "sqeezers"
|
|
authors = ["C2Rust"]
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2018"
|
|
autobins = false
|
|
|
|
[lib]
|
|
name = "sqeezers"
|
|
path = "lib.rs"
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
|
|
[dependencies]
|
|
c2rust-bitfields = "0.3"
|
|
c2rust-asm-casts = "0.1"
|
|
libc = "0.2"
|
|
|
|
|
|
[dependencies.c2rust-xcheck-plugin]
|
|
path = "../c2rust/cross-checks/rust-checks/rustc-plugin"
|
|
version = "*"
|
|
|
|
[dependencies.c2rust-xcheck-derive]
|
|
path = "../c2rust/cross-checks/rust-checks/derive-macros"
|
|
version = "*"
|
|
|
|
[dependencies.c2rust-xcheck-runtime]
|
|
path = "../c2rust/cross-checks/rust-checks/runtime"
|
|
version = "*"
|
|
features = ["libc-hash", "fixed-length-array-hash"]
|
|
|
|
[dependencies.c2rust-xcheck-backend-zstd-logging]
|
|
path = "../c2rust/cross-checks/rust-checks/backends/zstd-logging"
|
|
version = "*"
|
|
|
|
[dependencies.c2rust-ast-printer]
|
|
path = "../c2rust/cross-checks/rust-checks/"
|
|
version = "*"
|