惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
博客园_首页
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
B
Blog
D
DataBreaches.Net
腾讯CDC
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
月光博客
月光博客
V
V2EX
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
The Cloudflare Blog
博客园 - 叶小钗
Y
Y Combinator Blog

drew's dev blog

Hunting a production-only proxy bug in SvelteKit Artisanal Handcrafted Git Repositories Everything you need to know about Python 3.13 – JIT and GIL went up the hill How Postgres stores oversized values – let's raise a TOAST How Postgres stores data on disk – this one's a page turner Bumper Comtrade Dotfiles How long is a cucumber? 🥒 Jekyll KaTeX Block Using make and latexmk for easy LaTeX compilation Calculating the overlap of aerial photos Custom Jekyll plugins with GitHub Pages Calculating meters per pixel from aerial photographs Proper line numbers with Jekyll Compiling zsh without root Coding cheatsheet
QuEST Rust Wrapper
Drew Silcock · 2024-07-15 · via drew's dev blog

· 2 min read ·5

About

QuEST (Quantum Exact Simulation Toolkit) is a C library for doing exact simulations of quantum circuits. more information about QuEST, check out their repository and their website.

This QuEST-rs project is a Rust wrapper around the QuEST library, allowing you to use QuEST in your Rust projects. There’s also a template you can use to start up a new Rust project using the QuEST library.

Using the library

The library is up on crates.io so all you need to do is:

Current status

It was a fully implemented wrapper around the original library back when I wrote it, but that was like 4 years ago and I’ve not updated it since then, so there’s probably a bit of work that would need to be done to update it to the latest version.

Still, if you want to see how to wrap up C/C++ libraries in Rust or have an interest in quantum computing, have a look.

Check out the repository here