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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
量子位
S
SegmentFault 最新的问题
博客园 - 聂微东
博客园 - 【当耐特】
J
Java Code Geeks
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
V
V2EX
人人都是产品经理
人人都是产品经理
博客园 - Franky
罗磊的独立博客
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
云风的 BLOG
云风的 BLOG
Y
Y Combinator Blog
Apple Machine Learning Research
Apple Machine Learning Research

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