Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
buffalojoec committed Aug 7, 2024
1 parent 83bb29e commit 4a575f9
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ members = [
"storage-proto",
"streamer",
"svm",
"svm/examples/paytube",
"svm-conformance",
"svm-transaction",
"test-validator",
Expand Down Expand Up @@ -422,6 +423,7 @@ solana-storage-proto = { path = "storage-proto", version = "=2.1.0" }
solana-streamer = { path = "streamer", version = "=2.1.0" }
solana-svm = { path = "svm", version = "=2.1.0" }
solana-svm-conformance = { path = "svm-conformance", version = "=2.1.0" }
solana-svm-example-paytube = { path = "svm/examples/paytube", version = "=2.1.0" }
solana-svm-transaction = { path = "svm-transaction", version = "=2.1.0" }
solana-system-program = { path = "programs/system", version = "=2.1.0" }
solana-test-validator = { path = "test-validator", version = "=2.1.0" }
Expand Down
21 changes: 21 additions & 0 deletions svm/examples/paytube/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[package]
name = "solana-svm-example-paytube"
description = "Reference example using Solana SVM API"
version = { workspace = true }
edition = { workspace = true }
publish = false

[dependencies]
solana-bpf-loader-program = { workspace = true }
solana-client = { workspace = true }
solana-compute-budget = { workspace = true }
solana-program-runtime = { workspace = true }
solana-sdk = { workspace = true }
solana-svm = { workspace = true }
solana-system-program = { workspace = true }
spl-associated-token-account = { workspace = true }
spl-token = { workspace = true }

[dev-dependencies]
solana-logger = { workspace = true }
solana-test-validator = { workspace = true }
1 change: 1 addition & 0 deletions svm/examples/paytube/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit 4a575f9

Please sign in to comment.