Skip to content
Open
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,588 changes: 2,486 additions & 1,102 deletions Cargo.lock

Large diffs are not rendered by default.

43 changes: 22 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "phoenix-seat-manager"
name = "phoenix-seat-manager-common"
version = "0.1.2"
edition = "2021"
repository = "https://github.com/Ellipsis-Labs/phoenix-seat-manager-v1"
Expand All @@ -25,26 +25,27 @@ codegen-units = 1
overflow-checks = true

[dependencies]
phoenix-v1 = { version = "0.2.2", features = [ "no-entrypoint" ] }
shank = "=0.0.12"
solana-program = "=1.14.9"
bytemuck = "=1.13.0"
borsh = "=0.9.3"
lib-sokoban = "=0.3.0"
num_enum = "=0.5.9"
itertools = "=0.10.5"
thiserror = "=1.0.38"
ellipsis-macros = "=0.1.1"
solana-security-txt = "=1.1.0"
static_assertions = "=1.1.0"
spl-token = { version = "=3.5.0", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "=1.1.1", features = [ "no-entrypoint" ] }
toml_edit = "=0.18.1"
proc-macro-crate = "=1.3.0"
borsh = "0.9.3"
bytemuck = "1.13.0"
ellipsis-macros = "0.1.1"
itertools = "0.10.5"
lib-sokoban = ">=0.3.2"
num_enum = "0.5.9"
phoenix-common = { version = "0.2.1", features = [ "no-entrypoint" ] }
proc-macro-crate = "1.3.0"
shank = "0.4.2"
solana-program = "1.16.3"
solana-security-txt = ">=1.1.0"
spl-associated-token-account = { version = "2.2.0", features = [ "no-entrypoint" ] }
spl-token = { version = "3.5.0", features = ["no-entrypoint"] }
static_assertions = "1.1.0"
thiserror = "1.0.38"
toml_edit = "0.18.1"

[dev-dependencies]
rand = "0.7.3"
ellipsis-client = "0.1.17"
tokio = { version = "1.8.4", features = ["full"] }
solana-sdk = "=1.14.9"
phoenix-sdk = "0.2.1"
tokio = { version="*", features=["full"]}
solana-sdk = "1.16.3"
solana-program-test = "1.16.3"
ellipsis-client = "1.0.0"
phoenix-sdk = "0.7.0"
Loading