Skip to content

Commit

Permalink
Fix publishing/release issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass committed Feb 18, 2025
1 parent 2548ca6 commit 39d99ad
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 7 deletions.
8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,13 @@ spl-associated-token-account = "2.3.0"
spl-token = "4.0.0"
itertools = "0.13"
tokio-graceful-shutdown = "0.15"
solana-transaction-utils = { path = "./solana-transaction-utils" }
# solana-transaction-utils = { version = "0.1.0", path = "./solana-transaction-utils" }
# tuktuk-sdk = { version = "0.1.0", path = "./tuktuk-sdk" }
# tuktuk-program = { version = "0.1.0", path = "./tuktuk-program" }
solana-transaction-utils = { version = "0.1.0" }
tuktuk-sdk = { version = "0.1.0" }
tuktuk-program = { version = "0.1.0" }


[profile.release]
debug = true
2 changes: 1 addition & 1 deletion solana-programs/programs/cron/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cron"
version = "0.1.3"
version = "0.1.2"
description = "Created with Anchor"
edition = "2021"

Expand Down
2 changes: 2 additions & 0 deletions solana-transaction-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ license.workspace = true
homepage.workspace = true
repository.workspace = true

description = "Utilities for creating and sending transactions on Solana"

[lib]
name = "solana_transaction_utils"
path = "src/lib.rs"
Expand Down
4 changes: 2 additions & 2 deletions tuktuk-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ serde_json = { workspace = true }
anchor-client = { workspace = true, features = ["async"] }
solana-sdk = { workspace = true }
dirs = "5.0.1"
tuktuk-sdk = { path = "../tuktuk-sdk" }
tuktuk-program = { path = "../tuktuk-program" }
tuktuk-sdk = { workspace = true }
tuktuk-program = { workspace = true }
solana-transaction-utils = { workspace = true}
spl-associated-token-account = { workspace = true }
spl-token = { workspace = true }
Expand Down
5 changes: 3 additions & 2 deletions tuktuk-crank-turner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "A program for cranking and turning tuktuk tasks"

[[bin]]
name = "tuktuk-crank-turner"
Expand All @@ -25,8 +26,8 @@ spl-associated-token-account = { workspace = true }
spl-token = "5.0.2"
solana-transaction-status = "1.18.22"
solana-transaction-utils = { workspace = true }
tuktuk-sdk = { path = "../tuktuk-sdk" }
tuktuk-program = { path = "../tuktuk-program" }
tuktuk-sdk = { workspace = true }
tuktuk-program = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
config = { workspace = true }
Expand Down
2 changes: 2 additions & 0 deletions tuktuk-program/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "tuktuk-program"
version = "0.1.0"
description = "Raw rust sdk for interacting with the tuktuk program"

authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
3 changes: 2 additions & 1 deletion tuktuk-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Rust sdk for interacting with the tuktuk program"

build = "build.rs"

Expand All @@ -28,7 +29,7 @@ itertools = { workspace = true }
async-trait = { version = "0" }
spl-associated-token-account = { workspace = true }
spl-token = { workspace = true }
tuktuk-program = { path = "../tuktuk-program" }
tuktuk-program = { workspace = true }
base64 = "0.22.1"
serde_json = "1.0.135"
bytemuck = "1.21.0"
Expand Down

0 comments on commit 39d99ad

Please sign in to comment.