server-connection-rust
Installation
SKILL.md
Couchbase Server Connection — Rust
Platform-agnostic concepts (connection string formats, timeout semantics, durability, sub-document, troubleshooting):
shared/server/sdk-connection-concepts.md
See templates/sdk-connection-rust.rs for the full standalone connection template.
Rust SDK 1.x is async-first, built on tokio. Most operations return Result<T, couchbase::error::Error>.
Cargo.toml
[dependencies]
couchbase = "1"
tokio = { version = "1", features = ["full"] }
serde_json = "1"
serde = { version = "1", features = ["derive"] }
uuid = { version = "1", features = ["v4"] }