anyhow

Flexible, idiomatic error handling for Rust applications with a single concrete error type.

Library
Cargo
v1.0.104
6,624stars
Apache License 2.0

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
74/100Good
Development Activity68
Maintenance76
Community52
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
93/100Excellent
Architecture92
Code Quality95
Innovation94
Learning Curve90

anyhow provides anyhow::Error, a trait-object-based error type that makes error handling in Rust application code effortless. Instead of defining bespoke error enums for every fallible function, you return anyhow::Result<T> and let the ? operator propagate any error that implements std::error::Error.

Beyond simple propagation, anyhow lets you attach human-readable context to errors, automatically captures backtraces on recent Rust versions, and supports downcasting back to concrete error types when you need to branch on the underlying cause. It works in both std and no_std environments and pairs naturally with thiserror for library-defined error types.

What You Get

  • A single anyhow::Error type and anyhow::Result<T> alias that absorb any std::error::Error via the ? operator
  • The Context / with_context API for attaching descriptive, low-overhead context to errors as they propagate
  • The anyhow! and bail! macros for constructing and early-returning ad-hoc errors with format-string interpolation
  • Automatic backtrace capture (Rust >= 1.65) and downcasting back to concrete error types by value or reference
  • no_std support (with a global allocator) exposing nearly the same API surface

Common Use Cases

  • Returning errors from application main, CLI tools, and glue code without defining custom error enums
  • Adding context to low-level errors so failures are debuggable (“Failed to read config from …”)
  • Propagating heterogeneous errors from many libraries through one uniform result type
  • Inspecting or branching on a root cause via downcasting when specific handling is required

Under The Hood

Architecture — The crate centers on a single Error type (src/error.rs) that is a thin, pointer-width wrapper around a heap-allocated ErrorImpl reached through custom fat/thin pointer machinery in src/ptr.rs (Own, Ref, Mut), letting one word carry the error plus a vtable of type-erased operations (display, debug, downcast, backtrace). src/context.rs implements the Context trait that layers messages onto the cause chain, src/chain.rs provides iteration over the Caused by: sources, src/fmt.rs renders the chain and backtrace, and src/backtrace.rs gates capture behind Rust-version and feature cfgs. Tech Stack — Pure Rust (edition 2021, MSRV 1.68), zero required runtime dependencies, with a build.rs probe that feature-detects compiler capabilities (core error trait, generic member access, backtrace support) and sets cfgs so the same source compiles across a wide range of toolchains and std/no_std. Dev-only dependencies (thiserror, trybuild, rustversion, syn, futures) exist purely for the test suite. Code Quality — Exceptionally high: 14 integration test files under tests/ cover downcasting, context, ffi, boxed conversion, fmt, macros, source chains, and drop behavior, plus trybuild compile-fail UI tests that pin exact error messages. The code is unsafe-heavy by necessity (manual pointer tagging) but tightly encapsulated behind safe APIs and maintained by a single expert author with meticulous cfg discipline. API Design — Best-in-class developer experience: getting started needs only use anyhow::Result and the ? operator, context is one .context("...") call away, and the anyhow!/bail! macros read naturally. Documentation is thorough with runnable doctests on every public item, and the API deliberately mirrors familiar Result/Error idioms so the learning curve is minimal.

Used by 45 apps in this directory

TypeScript
51%
MIT

Anarlog

Note Taking · AI Assistants · Productivity

9,087

Anarlog is an open-source, local-first AI meeting notetaker that records, transcribes, and summarizes meetings entirely on your device — no cloud lock-in, no mandatory account, and every note saved as a plain markdown file you own forever.

View details
86
Repo Health
77
Technical
69
Dependency
Built with
TypeScript51%
Rust38%
Updated today
Dart
74%
AGPL 3.0

AppFlowy

Productivity · Project Management · Collaboration

75,729

The open-source AI workspace that puts your data, your rules — with local LLMs, CRDT collaboration, and full self-hosting built in.

View details
66
Repo Health
81
Technical
66
Dependency
Built with
Dart74%
Rust24%
Updated 1 weeks ago
TypeScript
49%
AGPL 3.0

BrowserOS

Browser · AI Assistants

13,248

The open-source agentic Chromium browser with native AI agents, MCP server, and visual workflow automation — your data never leaves your machine.

View details
87
Repo Health
82
Technical
69
Dependency
Built with
TypeScript49%
Rust22%
Python16%
Updated today
Rust
67%
MIT

Bun

Developer Tools

95,452

An all-in-one JavaScript and TypeScript toolkit — one Rust-and-JavaScriptCore binary that replaces Node.js, npm, a bundler, and a test runner with faster equivalents.

View details
92
Repo Health
91
Technical
66
Dependency
Built with
Rust67%
C++19%
Updated today
Rust
54%
Other

Cameleer

AI Agents

23

A local-first desktop workspace for managing AI agents in an enterprise-style workflow — agent directory, Kanban task tracking, workspace chat, and a full runtime/audit log of agent actions and tool approvals.

View details
48
Repo Health
65
Technical
76
Dependency
Built with
Rust54%
JavaScript24%
TypeScript15%
Updated 4 weeks ago
Go
32%
Apache 2.0

CubeSandbox

Developer Tools · Security · AI Agents

11,247

Instant, concurrent, hardware-isolated MicroVM sandboxes for AI agents — E2B-API compatible, sub-60ms cold starts, and a built-in zero-trust egress proxy, all self-hostable at scale.

View details
83
Repo Health
88
Technical
63
Dependency
Built with
Go32%
Rust31%
C21%
Updated today
Rust
95%
Other

Databend

Databases · Data Engineering

9,414

Open-source enterprise data warehouse unifying analytics, vector search, full-text search, and AI agent orchestration in a single Rust-built engine on S3.

View details
91
Repo Health
84
Technical
79
Dependency
Built with
Rust95%
Updated today
TypeScript
88%
MIT

DevTools-X

Developer Tools

1,532

41 offline-first developer utilities in a single 10MB cross-platform desktop app — no Electron, no cloud, no compromise.

View details
51
Repo Health
68
Technical
68
Dependency
Built with
TypeScript88%
Updated 2 months ago
TypeScript
72%
Other

Epicenter

Knowledge Management · Note Taking · Developer Tools

4,761

A local-first monorepo led by Whispering, an open-source speech-to-text app, built on an MIT toolkit that turns your data into plain Markdown and SQLite files you own instead of a database you rent.

View details
88
Repo Health
90
Technical
68
Dependency
Built with
TypeScript72%
Svelte15%
Updated today

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search