Skip to content

Commit

Permalink
fix: fix deps specific to pass ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Ma233 committed Feb 13, 2025
1 parent 4e0697c commit cb3e47b
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 21 deletions.
10 changes: 10 additions & 0 deletions Cargo.lock

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

11 changes: 3 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,10 @@ members = [
license = "MIT"

[workspace.dependencies]
#solana-client = { version = "2.2.0", git = "https://github.com/anza-xyz/agave.git", branch = "v2.2" }
#solana-program = "2.2.0"
#solana-sdk = { version = "2.2.0", git = "https://github.com/anza-xyz/agave.git", branch = "v2.2" }
#solana-zk-token-sdk = { version = "2.2.0", git = "https://github.com/anza-xyz/agave.git", branch = "v2.2" }

solana-client = { version = "2.2.0", git = "https://github.com/anza-xyz/agave.git", branch = "v2.2" }
solana-program = "2.2.0"
solana-sdk = { version = "2.2.0", features = ["openssl-vendored"] }
solana-zk-token-sdk = { version = "2.2.0", git = "https://github.com/anza-xyz/agave.git", branch = "v2.2" }
solana-program = "2.2.0" # { version = "2.2.0", git = "https://github.com/anza-xyz/agave.git", branch = "v2.2" }
solana-sdk = "2.2.0" # { version = "2.2.0", git = "https://github.com/anza-xyz/agave.git", branch = "v2.2" }

arrayref = "0.3.9"
borsh = "0.10.4"
Expand All @@ -38,4 +33,4 @@ nostr-sdk = "0.38.0"
tokio = "1.43.0"
tracing-subscriber = "0.3.19"

dephy-balance-payment-sdk = { path = "./balance-payment-sdk" }
dephy-balance-payment-sdk = { version = "0.1.0", path = "./balance-payment-sdk" }
6 changes: 4 additions & 2 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ ignore = [
# waiting for solana crates to be updated
"RUSTSEC-2024-0344",
# waiting for solana crates to be updated
"RUSTSEC-2025-0004",
"RUSTSEC-2021-0145",
# waiting for solana crates to be updated
"RUSTSEC-2024-0375",
]

[bans]
Expand Down Expand Up @@ -53,4 +55,4 @@ license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = ["https://github.com/dephy-io/agave.git"]
allow-git = ["git://github.com/anza-xyz/agave.git"]
22 changes: 11 additions & 11 deletions examples/decharge-controller/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ edition = "2021"
license.workspace = true

[dependencies]
clap = "4.5.26"
dephy-balance-payment-sdk = { version = "0.1.0", path = "../../balance-payment-sdk" }
futures = "0.3.31"
nostr = "0.38.0"
nostr-sdk = "0.38.0"
clap = { workspace = true }
dephy-balance-payment-sdk = { workspace = true }
futures = { workspace = true }
nostr = { workspace = true }
nostr-sdk = { workspace = true }
sea-query = "0.32.1"
sea-query-binder = { version = "0.7.0", features = ["runtime-tokio", "sqlx-postgres"] }
serde = "1.0.217"
serde_json = "1.0.137"
serde = { workspace = true }
serde_json = { workspace = true }
sqlx = { version = "0.8.3", features = ["postgres", "runtime-tokio"] }
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["process", "rt-multi-thread"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["process", "rt-multi-thread"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }

[[bin]]
name = "dephy-decharge-controller-node"
Expand Down

0 comments on commit cb3e47b

Please sign in to comment.