Commit Graph

16 Commits

Author SHA1 Message Date
Kevin Heavey 7e0688341e
remove superfluous usage of allow(dead_code) (#1669) 2024-06-13 22:52:49 +08:00
Kevin Heavey 59e3eaafb5
Prefer explicitly using serde_derive instead of the "derive" feature of serde (#1329)
* use serde_derive instead of the derive feature of serde

* make serde_derive version match serde version

* remove serde dep entirely from programs/address-lookup-table

* replace remaining usage of serde "derive" feature

* update lock files

* explicitly use serde_derive in svm and frozen-abi

* add comments about serde and serde_derive versions matching
2024-05-15 01:11:31 +02:00
Brooks fbbae8a59a
clippy: clone_from() (#1177)
```
error: assigning the result of `Clone::clone()` may be inefficient
   --> bucket_map/src/bucket.rs:979:17
    |
979 |                 hashed = hashed_raw.clone();
    |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `hashed.clone_from(&hashed_raw)`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
    = note: `-D clippy::assigning-clones` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::assigning_clones)]`
```
2024-05-03 15:21:10 +00:00
Yihau Chen 51dc7e6fb7
[anza migration]: add 'agave=info' to default log level (#223) 2024-03-14 20:35:33 +08:00
Yihau Chen 3f9a7a52ea [anza migration] rename crates (#10)
* rename geyser-plugin-interface

* rename cargo registry

* rename watchtower

* rename ledger tool

* rename validator

* rename install

* rename geyser plugin interface when patch
2024-03-03 12:31:24 +08:00
Pankaj Garg 2a5ec4acf8
Cleanup cargo registry code (#33879) 2023-10-26 12:58:20 -07:00
Pankaj Garg 70107e2196
Retrieve crate version from cargo-registry package (#33867) 2023-10-25 12:27:57 -07:00
Pankaj Garg bdfb644122
Append crate to ELF file while deploying program (#33849)
* Append crate to ELF file while deploying program

* review feedback
2023-10-25 09:04:44 -07:00
Pankaj Garg 0fc2c9f214
Cargo registry server updates to download crates (#33805) 2023-10-23 10:25:51 -07:00
Pankaj Garg 6fd0dcb3eb
Add support for fetching program in cargo registry (#33759)
* Rename publisher.rs to crate_handler.rs

* support for fetching program in cargo registry
2023-10-20 15:41:24 -07:00
Pankaj Garg f4fb957a38
Code cleanup in cargo-registry (#33711) 2023-10-16 08:58:53 -07:00
Pankaj Garg 09e858d939
Handle cargo registry index lookup requests (#33681) 2023-10-13 07:54:37 -07:00
Pankaj Garg 47540af978
Replace cargo registry server's GIT index with sparse index (#33666)
* Replace cargo registry server's GIT index with sparse index

* Remove GIT index support

* handler for crate download request processing

* restructure the index code
2023-10-12 15:58:01 -07:00
Pankaj Garg c929775106
Enable running remote cargo registry server (#33629)
* Enable running remote cargo registry server

* use server URL to configure index
2023-10-10 22:54:34 +00:00
Pankaj Garg ad949b21b7
Fix failure in updating GIT index of cargo registry server (#33628) 2023-10-10 11:48:52 -07:00
Pankaj Garg 4c664a8d31
Cargo registry service for deploying programs (#33570) 2023-10-09 14:32:35 -07:00