chore(solisting): add crate skeleton and workspace entry

This commit is contained in:
thesn10
2026-05-27 23:58:11 +02:00
parent c88ebe67d3
commit ac6967693a
14 changed files with 293 additions and 20 deletions

View File

@@ -1,7 +1,6 @@
[package]
name = "solisting"
version = "0.1.0"
description = "Created with Anchor"
edition = "2021"
[lib]
@@ -19,9 +18,11 @@ anchor-debug = []
custom-heap = []
custom-panic = []
[dependencies]
anchor-lang = "1.0.2"
descro = { path = "../../../descro/programs/descro", features = ["cpi"] }
descro_ext_resolvers = { path = "../../../descro/programs/descro_ext_resolvers" }
# pyth-solana-receiver-sdk = "0.3" # TODO: Use when implementing oracle - has borsh version incompatibility
[dev-dependencies]
litesvm = "0.12.0"
@@ -30,6 +31,5 @@ solana-transaction = "3.0.2"
solana-signer = "3.0.0"
solana-keypair = "3.0.1"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(target_os, values("solana"))'] }

View File

View File

View File