1 stable release

Uses old Rust 2015

1.0.0 Jun 16, 2017

#14 in #│

Download history 13/week @ 2024-10-29 11/week @ 2024-11-05 1/week @ 2024-11-12 16/week @ 2024-11-19 19/week @ 2024-11-26 17/week @ 2024-12-03 41/week @ 2024-12-10 13/week @ 2024-12-17 17/week @ 2024-12-31 14/week @ 2025-01-07 22/week @ 2025-01-14 13/week @ 2025-01-21 13/week @ 2025-01-28 39/week @ 2025-02-04 22/week @ 2025-02-11

90 downloads per month
Used in 3 crates (2 directly)

MIT license

2KB

Build Example

.
├── build.rs
├── Cargo.toml
├── clib
│   ├── meson.build
│   ├── squid.h
│   └── squid.c
└── src
    └── lib.rs

build.rs:

extern crate meson;
use std::env;
use std::path::PathBuf;

fn main() {
    let build_path = PathBuf::from(env::var("OUT_DIR").unwrap());
    build_path.join("build");
    let build_path = build_path.to_str().unwrap();

    println!("cargo:rustc-link-lib=squid");
    println!("cargo:rustc-link-search=native={}", build_path);
    meson::build("clib", build_path);
}

Cargo.toml:

# ...

[build-dependencies]
meson = "1.0.0"

meson.build:

project('squid', 'c')
shared_library('squid', 'squid.c')

No runtime deps