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 20, 2020
1 parent e26a425 commit 3c5497e
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 @@ -61,6 +61,7 @@ thiserror = "1.0"
ed25519-dalek = { version = "=1.0.0-pre.4", optional = true }
solana-crate-features = { path = "../crate-features", version = "1.5.0", optional = true }
solana-logger = { path = "../logger", version = "1.5.0", optional = true }
solana-program-sdk = { path = "program", version = "1.5.0" }
solana-sdk-macro = { path = "macro", version = "1.5.0" }
solana-sdk-macro-frozen-abi = { path = "macro-frozen-abi", version = "1.5.0" }
rustversion = "1.0.3"
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 3c5497e

Please sign in to comment.