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

推荐订阅源

博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
Microsoft Azure Blog
Microsoft Azure Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
D
DataBreaches.Net
Engineering at Meta
Engineering at Meta
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements

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