stfx 0.1.0

Sovereign Trust Framework: top-level crate wrapping stfx-crypto for initial release
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# stfx

Top-level crate for the Sovereign Trust Framework (STFx).

Initial version depends only on `stfx-crypto` and re-exports it under `stfx::crypto`.

## Usage

```rust
use stfx::crypto; // re-export of stfx-crypto

fn main() {
    // Placeholder usage; see stfx-crypto docs for APIs.
}
```