Skip to content

Commit

Permalink
programs should have no-entrypoint (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwrites authored May 2, 2023
1 parent 21754a8 commit 1ec505d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ bincode = "1.3.3"
bzip2 = "0.4"
clap = { version = "3.1.2", features = ["derive"] }
clockwork-cron = { path = "../cron", version = "=2.0.16" }
clockwork-network-program = { path = "../programs/network", version = "=2.0.16" }
clockwork-network-program = { path = "../programs/network", version = "=2.0.16", features = ["no-entrypoint"] }
clockwork-relayer-api = { path = "../relayer/api", version = "=2.0.16" }
clockwork-plugin-utils= { path = "../plugin/utils", version = "=2.0.16" }
clockwork-thread-program = { path = "../programs/thread", version = "=2.0.16" }
clockwork-thread-program = { path = "../programs/thread", version = "=2.0.16", features = ["no-entrypoint"] }
clockwork-utils = { path = "../utils", version = "=2.0.16" }
clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.16" }
clockwork-webhook-program = { path = "../programs/webhook", version = "=2.0.16", features = ["no-entrypoint"] }
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
dirs-next = "2.0.0"
indicatif = "0.16"
Expand Down

0 comments on commit 1ec505d

Please sign in to comment.