Skip to content
This repository was archived by the owner on Aug 21, 2024. It is now read-only.

Commit c1a57c5

Browse files
authoredSep 2, 2022
Add auth sdk page (#110)
(cherry picked from commit 418a618)
1 parent 521b3ff commit c1a57c5

File tree

2 files changed

+55
-0
lines changed

2 files changed

+55
-0
lines changed
 

‎docs/SDKs/rust-auth.mdx

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
sidebar_position: 2
3+
title: Soroban Rust Auth SDK
4+
---
5+
6+
The `soroban-auth` Rust crate contains the Soroban Rust Auth SDK. It provides
7+
utilities for verifying signatures on invocations of smart contracts. It is
8+
intended for use alongside the [`soroban-sdk`].
9+
10+
[`soroban-sdk`]: rust
11+
12+
:::caution
13+
The `soroban-auth` crate is in early development. Report issues
14+
[here](https://github.com/stellar/rs-soroban-sdk/issues/new/choose).
15+
:::
16+
17+
## SDK Documentation
18+
19+
Auth documentation is available at:
20+
https://docs.rs/soroban-auth
21+
22+
## Subscribe to Releases
23+
24+
Subscribe to releases on the GitHub repository:
25+
https://github.com/stellar/rs-soroban-sdk
26+
27+
## Add `soroban-auth` as a Dependency
28+
29+
Add the following sections to the `Cargo.toml` to import `soroban-auth`.
30+
31+
```toml
32+
[features]
33+
testutils = ["soroban-auth/testutils"]
34+
35+
[dependencies]
36+
soroban-auth = "0.0.4"
37+
38+
[dev_dependencies]
39+
soroban-auth = { version = "0.0.4", features = ["soroban-auth/testutils"] }
40+
```

‎docs/examples/authorization.mdx

+15
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,21 @@ test test::test ... ok
3636
test test::bad_data - should panic ... ok
3737
```
3838

39+
## Dependencies
40+
41+
The authorization example uses the Soroban auth SDK, and has the following
42+
Soroban dependencies in its Cargo.toml file.
43+
44+
```toml title="authorization/src/Cargo.toml
45+
[dependencies]
46+
soroban-sdk = "0.0.4"
47+
soroban-auth = "0.0.4"
48+
49+
[dev_dependencies]
50+
soroban-sdk = { version = "0.0.4", features = ["testutils"] }
51+
soroban-auth = { version = "0.0.4", features = ["testutils"] }
52+
```
53+
3954
## Code
4055

4156
```rust title="authorization/src/lib.rs"

0 commit comments

Comments
 (0)