Browse Source

Use published crate

febo 2 weeks ago
parent
commit
cd8829c5d5
4 changed files with 10 additions and 7 deletions
  1. 7 4
      Cargo.lock
  2. 1 1
      Cargo.toml
  3. 1 1
      p-interface/Cargo.toml
  4. 1 1
      p-token/Cargo.toml

+ 7 - 4
Cargo.lock

@@ -3038,17 +3038,20 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
 [[package]]
 name = "pinocchio"
 version = "0.9.2"
-source = "git+https://github.com/anza-xyz/pinocchio.git?branch=febo%2Fprecision-cap#d5e105383ec9fd37b9707c63eee252347dc40085"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5b971851087bc3699b001954ad02389d50c41405ece3548cbcafc88b3e20017a"
 
 [[package]]
 name = "pinocchio-log"
-version = "0.5.0"
-source = "git+https://github.com/anza-xyz/pinocchio.git?branch=febo%2Fprecision-cap#d5e105383ec9fd37b9707c63eee252347dc40085"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cd11022408f312e6179ece321c1f7dc0d1b2aa7765fddd39b2a7378d65a899e8"
 
 [[package]]
 name = "pinocchio-pubkey"
 version = "0.3.0"
-source = "git+https://github.com/anza-xyz/pinocchio.git?branch=febo%2Fprecision-cap#d5e105383ec9fd37b9707c63eee252347dc40085"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb0225638cadcbebae8932cb7f49cb5da7c15c21beb19f048f05a5ca7d93f065"
 dependencies = [
  "five8_const",
  "pinocchio",

+ 1 - 1
Cargo.toml

@@ -36,7 +36,7 @@ consolidate-commits = false
 mollusk-svm = "0.4.0"
 mollusk-svm-fuzz-fixture = "0.4.0"
 num-traits = "0.2"
-pinocchio = { version = "0.9.2", git = "https://github.com/anza-xyz/pinocchio.git", branch = "febo/precision-cap" }
+pinocchio = "0.9.2"
 solana-instruction = "2.3.0"
 solana-program-error = "2.2.2"
 solana-program-option = "2.2.1"

+ 1 - 1
p-interface/Cargo.toml

@@ -13,7 +13,7 @@ crate-type = ["rlib"]
 
 [dependencies]
 pinocchio = { workspace = true }
-pinocchio-pubkey = { version = "0.3", git = "https://github.com/anza-xyz/pinocchio.git", branch = "febo/precision-cap" }
+pinocchio-pubkey = "0.3"
 
 [dev-dependencies]
 strum = "0.27"

+ 1 - 1
p-token/Cargo.toml

@@ -16,7 +16,7 @@ logging = []
 
 [dependencies]
 pinocchio = { workspace = true }
-pinocchio-log = { version = "0.5", default-features = false,git = "https://github.com/anza-xyz/pinocchio.git", branch = "febo/precision-cap" }
+pinocchio-log = { version = "0.5.1", default-features = false }
 pinocchio-token-interface = { version = "^0", path = "../p-interface" }
 
 [dev-dependencies]