Skip to content

Commit

Permalink
Update crate links to use crates.io (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch authored Jul 30, 2022
1 parent 2c6210c commit 8e31f90
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/getting-started/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Add the following sections to the `Cargo.toml` that will import the `soroban-sdk

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

```toml
Expand All @@ -44,7 +44,7 @@ export = []
testutils = ["soroban-sdk/testutils"]

[dependencies]
soroban-sdk = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "32b76650" }
soroban-sdk = "0.0.3"

[dev_dependencies]
first-project = { path = ".", features = ["testutils"] }
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ will execute on network, however in a local sandbox.
Install the Soroban CLI using `cargo install`.

```sh
cargo install --locked --git http://github.com/stellar/soroban-cli soroban-cli
cargo install --locked --version 0.0.2 soroban-cli
```

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

### Usage
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/create-a-project.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add the following sections to the `Cargo.toml` that will import the

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

```toml
Expand Down Expand Up @@ -105,7 +105,7 @@ testutils = ["soroban-sdk/testutils"]
crate-type = ["cdylib", "rlib"]

[dependencies]
soroban-sdk = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "32b76650" }
soroban-sdk = "0.0.3"

[dev_dependencies]
project-name = { path = ".", features = ["testutils"] }
Expand Down

0 comments on commit 8e31f90

Please sign in to comment.