Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
s/_/-/g package names
Browse files Browse the repository at this point in the history
  • Loading branch information
abishekk92 committed Apr 3, 2023
1 parent 8d659d0 commit 647d702
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 30 deletions.
44 changes: 22 additions & 22 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions programs/gpl_compression/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "gpl_compression"
name = "gpl-compression"
version = "0.1.1"
description = "Created with Anchor"
edition = "2021"
Expand All @@ -17,6 +17,6 @@ default = []

[dependencies]
anchor-lang = "0.26.0"
gpl_core = { version = "0.1.0", path = "../gpl_core", features = ["cpi"] }
gpl-core = { version = "0.1.0", path = "../gpl_core", features = ["cpi"] }
solana-security-txt = "1.1.0"
spl-account-compression = {version = "0.1.7", features = ["cpi"]}
4 changes: 2 additions & 2 deletions programs/gpl_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "gpl_core"
name = "gpl-core"
version = "0.1.0"
description = "Gum Protocol Core"
edition = "2021"
Expand All @@ -17,7 +17,7 @@ default = []

[dependencies]
anchor-lang = { version = "0.26.0" }
gpl_session = { version = "0.1.0", path = "../gpl_session", features = ["no-entrypoint"] }
gpl-session = { version = "0.1.0", path = "../gpl_session", features = ["no-entrypoint"] }
solana-security-txt = "1.1.0"
strum = "0.24.1"
strum_macros = "0.24.3"
2 changes: 1 addition & 1 deletion programs/gpl_nameservice/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "gpl_nameservice"
name = "gpl-nameservice"
version = "0.1.0"
description = "Created with Anchor"
edition = "2021"
Expand Down
6 changes: 3 additions & 3 deletions programs/gpl_session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "gpl_session"
name = "gpl-session"
version = "0.1.0"
description = "Created with Anchor"
edition = "2021"
Expand All @@ -9,13 +9,13 @@ crate-type = ["cdylib", "lib"]
name = "gpl_session"

[features]
no-entrypoint = []
no-entrypoint = ["gpl-session-macros"]
no-idl = []
no-log-ix-name = []
cpi = ["no-entrypoint"]
default = []

[dependencies]
anchor-lang = "0.26.0"
gpl-session-macros = { version = "0.1.0", path = "macros" }
solana-security-txt = "1.1.0"
gpl-session-macros = { version = "0.1.0", path = "macros", optional = true }

0 comments on commit 647d702

Please sign in to comment.