Add sdk and program READMEs (#18154)

This commit is contained in:
Jack May 2021-06-23 14:22:35 -07:00 committed by GitHub
parent 522062350b
commit 94905dae52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 0 deletions

View File

@ -6,6 +6,7 @@ authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-sdk"
readme = "README.md"
license = "Apache-2.0"
edition = "2018"

15
sdk/README.md Normal file
View File

@ -0,0 +1,15 @@
<p align="center">
<a href="https://solana.com">
<img alt="Solana" src="https://i.imgur.com/uBVzyX3.png" width="250" />
</a>
</p>
# Solana SDK
Use the Solana SDK Crate to write client side applications in Rust. If writing on-chain programs, use the [Solana Program Crate](https://crates.io/crates/solana-program) instead.
More information about Solana is available in the [Solana documentation](https://docs.solana.com/).
The [Solana Program Library](https://github.com/solana-labs/solana-program-library) provides examples of how to use this crate.
Still have questions? Ask us on [Discord](https://discordapp.com/invite/pquxPsq)

View File

@ -6,6 +6,7 @@ authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-program"
readme = "README.md"
license = "Apache-2.0"
edition = "2018"

15
sdk/program/README.md Normal file
View File

@ -0,0 +1,15 @@
<p align="center">
<a href="https://solana.com">
<img alt="Solana" src="https://i.imgur.com/uBVzyX3.png" width="250" />
</a>
</p>
# Solana Program
Use the Solana Program Crate to write on-chain programs in Rust. If writing client-side applications, use the [Solana SDK Crate](https://crates.io/crates/solana-program) instead.
More information about Solana is available in the [Solana documentation](https://docs.solana.com/).
[Helloworld](https://github.com/solana-labs/example-helloworld) and the [Solana Program Library](https://github.com/solana-labs/solana-program-library) provide examples of how to use this crate.
Still have questions? Ask us on [Discord](https://discordapp.com/invite/pquxPsq)