Skip to content

Commit

Permalink
chore:release 0.1.1 (#167)
Browse files Browse the repository at this point in the history
Co-authored-by: supernovahs <[email protected]>
  • Loading branch information
supernovahs and supernovahs authored Nov 29, 2024
1 parent 62556fd commit c91ab11
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 46 deletions.
58 changes: 25 additions & 33 deletions Cargo.lock

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

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ members = [
"crates/chainio/clients/eth/",
"crates/chainio/clients/fireblocks/",
"crates/chainio/txmanager/",
"crates/contracts/bindings/",
"crates/crypto/bls/",
"crates/crypto/bn254/",
"crates/eigen-cli/",
Expand All @@ -30,7 +29,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Eigen Layer contributors"]
rust-version = "1.79"
Expand Down Expand Up @@ -63,7 +62,6 @@ eigen-client-avsregistry = { path = "crates/chainio/clients/avsregistry" }
eigen-client-elcontracts = { path = "crates/chainio/clients/elcontracts" }
eigen-client-eth = { path = "crates/chainio/clients/eth" }
eigen-client-fireblocks = { path = "crates/chainio/clients/fireblocks" }
eigen-contract-bindings = { path = "crates/contracts/bindings/" }
eigen-crypto-bls = { path = "crates/crypto/bls/" }
eigen-crypto-bn254 = { path = "crates/crypto/bn254/" }
eigen-logging = { path = "crates/logging/" }
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ cargo add eigensdk --features full

- [eigen-client-avsregistry](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/clients/avsregistry) - Read, Write and subscribe methods for AvsRegistry
- [eigen-client-elcontracts](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/clients/elcontracts) - Convenience methods to call Eigenlayer contracts
- [eigen-contracts-bindings](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/contracts/bindings) - Generate ethers bindings for Eigen Layer.
- [eigen-crypto-bls](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/crypto/bls) - New bls key pair, sign message, conversion utilites between alloy and arkworks bn254.
- [eigen-crypto-bn254](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/crypto/bn254) - verify message on G2, map to curve.
- [eigen-metrics](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/metrics) - performance, rpc and economic metrics
Expand Down
4 changes: 0 additions & 4 deletions crates/eigensdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ eigen-client-avsregistry = { workspace = true, optional = true }
eigen-client-elcontracts = { workspace = true, optional = true }
eigen-client-eth = { workspace = true, optional = true }
eigen-client-fireblocks = { workspace = true, optional = true }
eigen-contract-bindings = { workspace = true, optional = true }
eigen-crypto-bls = { workspace = true, optional = true }
eigen-crypto-bn254 = { workspace = true, optional = true }
eigen-logging = { workspace = true, optional = true }
Expand Down Expand Up @@ -42,7 +41,6 @@ full = [
"client-elcontracts",
"client-eth",
"client-fireblocks",
"contract-bindings",
"crypto-bls",
"crypto-bn254",
"logging",
Expand All @@ -64,8 +62,6 @@ client-elcontracts = ["dep:eigen-client-elcontracts"]
client-eth = ["dep:eigen-client-eth"]
client-fireblocks = ["dep:eigen-client-fireblocks"]

# Contract-related features
contract-bindings = ["dep:eigen-contract-bindings"]

# Crypto-related features
crypto-bls = ["dep:eigen-crypto-bls"]
Expand Down
1 change: 0 additions & 1 deletion crates/eigensdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ cargo add eigensdk --features full

- [eigen-client-avsregistry](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/clients/avsregistry) - Read, Write and subscribe methods for AvsRegistry
- [eigen-client-elcontracts](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/clients/elcontracts) - Convenience methods to call Eigenlayer contracts
- [eigen-contracts-bindings](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/contracts/bindings) - Generate ethers bindings for Eigen Layer.
- [eigen-crypto-bls](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/crypto/bls) - New bls key pair, sign message, conversion utilites between alloy and arkworks bn254.
- [eigen-crypto-bn254](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/crypto/bn254) - verify message on G2, map to curve.
- [eigen-metrics](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/metrics) - performance, rpc and economic metrics
Expand Down
4 changes: 0 additions & 4 deletions crates/eigensdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ pub use eigen_logging as logging;
#[doc(inline)]
pub use eigen_metrics as metrics;

#[cfg(feature = "contract-bindings")]
#[doc(inline)]
pub use eigen_contract_bindings as contract_bindings;

/* ------------------------------------- Client Re-exports ------------------------------------- */

#[cfg(feature = "client-avsregistry")]
Expand Down

0 comments on commit c91ab11

Please sign in to comment.