A Browser That
Doesn't Sell You

Conclave is built entirely from scratch in Rust. No Chromium. No telemetry. No data selling. Just a browser that works for you.

Built from scratch in Rust. Windows first, currently in development.

TLS 1.3
0 Trackers
Pure Rust
Zero Telemetry
conclave.studio
0+
Lines of Rust
0
In-house crates
0
Third-party big-tech dependencies
0
Ads, trackers or telemetry
100%
Built from scratch
Why Conclave

Built for privacy.
Not for profit.

Most browsers make money by watching what you do. Conclave makes a different promise: your activity is yours alone.

Conclave Conclave Every component, built in-house

Architecture

Every component.
In-house.

From the network stack to the rendering engine, Conclave is engineered top to bottom. No black boxes, no borrowed engines.

Custom HTML and CSS Engine

A purpose-built parser and layout engine written in Rust, designed for correctness, speed, and predictable memory behavior.

In-house JavaScript Runtime

A scripting layer engineered for safety and isolation, keeping page logic sandboxed away from your system.

Bespoke Network Stack

A custom TLS 1.3 implementation with HSTS, no reliance on third-party crypto crates, and full control over every byte on the wire.

GPU Rendering Pipeline

A hand-written GPU compositor that paints pages with hardware acceleration and zero external graphics dependencies.

Isolated Cookie Storage

Per-site partitioned cookie jars built on CHIPS, so cross-site trackers cannot follow you between domains.

Safe Browsing Layer

Built-in protections that warn you about dangerous sites without shipping your browsing history to a third party.

conclave-net/src/tls.rs
// Custom TLS 1.3 handshake, no third-party crypto crates
pub fn establish_secure(host: &str) -> Result<Connection> {
    let policy = Policy::strict()
        .require_hsts(true)
        .min_version(Tls::V1_3)
        .block_telemetry(true);

    let conn = Connection::handshake(host, &policy)?;
    // No analytics. No reporting. No exceptions.
    Ok(conn)
}
Under the Hood

A real engine.
Built for speed.

The same in-house engineering that protects your privacy is what makes Conclave fast.

JIT-Compiled JavaScript

Frequently used code compiles straight to native machine code, so scripts run at full speed instead of being interpreted line by line.

Incremental Rendering

When the page changes, Conclave repaints only the region that moved and reuses the rest from cache, instead of redrawing everything.

Always Responsive

Page loading and scripts run on a separate thread from the interface, so the window keeps responding even while a heavy page is working.

GPU-Accelerated Compositing

Finished frames are composited on the graphics card, for smooth scrolling and fluid animation.

The Comparison

How does Conclave
stack up?

A clear look at how Conclave compares to the browsers most people use every day.

Feature Conclave Chrome Edge Brave
Zero telemetry by default Yes No No Partial
No advertising business model Yes No No Partial
Built from scratch, not Chromium Yes No No No
Memory-safe Rust core Yes Partial Partial Partial
Cookie partitioning (CHIPS) Yes Partial Partial Yes
Custom TLS 1.3 stack Yes No No No
No data selling Yes No No Yes
Roadmap

Where we are.
Where we are going.

Conclave is in early access and growing fast. Here is an honest look at what is shipped, in progress, and planned.

Working

Working today

  • Custom HTML and CSS rendering engine
  • JIT-compiled JavaScript engine
  • Incremental rendering pipeline
  • GPU accelerated compositor
  • TLS 1.3 networking with HSTS
  • Partitioned cookie storage
In Progress

Coming Soon

  • Expanded JavaScript runtime coverage
  • Bookmark sync without the cloud middleman
  • Built-in content blocking
Planned

On the Horizon

  • macOS and Linux builds
  • Privacy-respecting extension API
  • Independent security audit

Built from scratch.
Every line our own.

Conclave is engineered top to bottom in-house: 412,000+ lines of Rust across 45 purpose-built crates, with zero trackers shipped. No Chromium fork, no borrowed engine, no advertiser sitting between you and the web. Follow development on X as the first build takes shape.

412K+
Lines of Rust
45
In-house crates
0
Trackers shipped
Availability

Coming to Windows
first

Free to use, built from scratch for Windows to start. It is in active development. Get early access to hear the moment the first build is ready.

Windows

Windows 10 and 11 is our first target, and it is in active development. Get early access and we will tell you the moment the first build is ready.

In developmentWindows firstFree

macOS

A native macOS build is in development. Get early access to be notified at launch.

Coming Soon

Linux

Linux packages are planned and tracked on our roadmap. Follow development on X for updates.

Coming Soon