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

Add SDK category #36

Merged
merged 2 commits into from
Jul 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/SDKs/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"position": 4,
"label": "SDKs"
}
33 changes: 33 additions & 0 deletions docs/SDKs/rust.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
sidebar_position: 1
title: Soroban Rust SDK
---

The `soroban_sdk` Rust crate contains the Soroban Rust SDK.

:::caution
The `soroban-sdk` is in early development. Report issues
[here](https://github.com/stellar/soroban-sdk).
:::

## SDK Documentation

SDK documentation is available at:
https://docs.rs/crates/soroban-sdk

## Subscribe to Releases

Subscribe to releases on the GitHub repository:
https://github.com/stellar/soroban-sdk

## Add the `soroban_sdk` as a Dependency

Add the following sections to the `Cargo.toml` to import the `soroban-sdk`.

```toml
[features]
testutils = ["soroban-sdk/testutils"]

[dependencies]
soroban-sdk = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "32b76650" }
```
2 changes: 1 addition & 1 deletion docs/examples/_category_.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"position": 2,
"position": 3,
"label": "Tutorials / Examples"
}
2 changes: 1 addition & 1 deletion docs/learn/_category_.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"position": 3,
"position": 5,
"label": "Learn"
}
2 changes: 1 addition & 1 deletion docs/under-the-hood/_category_.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"position": 8,
"position": 6,
"label": "Under the Hood"
}