Skip to content

Commit

Permalink
Add solana-program-sdk boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Oct 24, 2020
1 parent ccc5958 commit 3718771
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ solana-crate-features = { path = "../crate-features", version = "1.5.0", optiona
solana-logger = { path = "../logger", version = "1.5.0", optional = true }
solana-frozen-abi = { path = "../frozen-abi", version = "1.5.0" }
solana-frozen-abi-macro = { path = "../frozen-abi/macro", version = "1.5.0" }
solana-program-sdk = { path = "program", version = "1.5.0" }
solana-sdk-macro = { path = "macro", version = "1.5.0" }
rustversion = "1.0.3"
libsecp256k1 = { version = "0.3.5", optional = true }
Expand Down
16 changes: 16 additions & 0 deletions sdk/program/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "solana-program-sdk"
version = "1.5.0"
description = "Solana Program SDK"
authors = ["Solana Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana"
homepage = "https://solana.com/"
license = "Apache-2.0"
edition = "2018"

[dependencies]
serde = "1.0.112"
serde_derive = "1.0.103"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
2 changes: 2 additions & 0 deletions sdk/program/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#[macro_use]
extern crate serde_derive;

0 comments on commit 3718771

Please sign in to comment.