You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -70,7 +76,7 @@ inferadb = { version = "0.1", default-features = false, features = ["rest", "rus
70
76
71
77
### Minimum Supported Rust Version
72
78
73
-
The MSRV is **1.88.0**. We target two releases behind stable where possible. MSRV increases are noted in the [CHANGELOG](CHANGELOG.md). Builds on earlier compiler versions are not guaranteed.
79
+
The MSRV is **1.88.0**. The crate targets approximately two releases behind stable; MSRV bumps are documented in the [CHANGELOG](CHANGELOG.md). Earlier compilers are not guaranteed to work.
74
80
75
81
## Design Guarantees
76
82
@@ -79,8 +85,8 @@ The MSRV is **1.88.0**. We target two releases behind stable where possible. MSR
79
85
|**Denial is not an error**|`check()` returns `Ok(false)` for denied access; only `require()` converts denial to error |
80
86
|**Fail-closed by default**| Errors default to denying access; fail-open must be explicit |
81
87
|**Results preserve order**| Batch operations return results in the same order as inputs |
82
-
|**Writes are acknowledged**| Write operations return only after server confirmation|
83
-
|**Errors include request IDs**| All server errors include a `request_id()` for debugging |
88
+
|**Writes are acknowledged**| Write operations complete only after server confirmation.|
89
+
|**Errors include request IDs**| All server errors expose a request_id() for debugging and support.|
84
90
85
91
## Core API
86
92
@@ -111,13 +117,19 @@ let results: Vec<bool> = vault
0 commit comments