Skip to content

Commit

Permalink
chore: add some information to crates update msrv (#754)
Browse files Browse the repository at this point in the history
## Summary
Updates all crate cargo tomls to have some more metadata + correct
rust-versions

## Background
We didn't have msrv set on some packages, we didn't have information
about package ownership and sometimes correct licenses.

## Changes
- checked + updated all cargo rust versions
- added links to readmes where appropriate
- consistent licenses, repo, website

## Testing
ran cargo-msrv on all crates.
  • Loading branch information
joroshiba authored Feb 15, 2024
1 parent 2c5a88e commit 96960d8
Show file tree
Hide file tree
Showing 15 changed files with 67 additions and 6 deletions.
4 changes: 4 additions & 0 deletions crates/astria-celestia-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ description = "an extension of eigerco's celestia client with astria specific pi
version = "0.1.0"
edition = "2021"
rust-version = "1.73"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
Expand Down
5 changes: 5 additions & 0 deletions crates/astria-celestia-mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
name = "astria-celestia-mock"
version = "0.1.0"
edition = "2021"
rust-version = "1.73"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
6 changes: 5 additions & 1 deletion crates/astria-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
name = "astria-cli"
version = "0.3.1"
edition = "2021"
rust-version = "1.73"
rust-version = "1.74.1"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

[[bin]]
name = "astria-cli"
Expand Down
6 changes: 5 additions & 1 deletion crates/astria-composer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
name = "astria-composer"
version = "0.3.1"
edition = "2021"
rust-version = "1.70.0"
rust-version = "1.73"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

[[bin]]
name = "astria-composer"
Expand Down
4 changes: 4 additions & 0 deletions crates/astria-conductor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name = "astria-conductor"
version = "0.11.1"
edition = "2021"
rust-version = "1.73"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

[[bin]]
name = "astria-conductor"
Expand Down
5 changes: 5 additions & 0 deletions crates/astria-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
name = "astria-config"
version = "0.1.0"
edition = "2021"
rust-version = "1.71.1"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
3 changes: 2 additions & 1 deletion crates/astria-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
name = "astria-core"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.73"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"
Expand Down
5 changes: 4 additions & 1 deletion crates/astria-merkle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
name = "astria-merkle"
version = "0.1.0"
edition = "2021"
rust-version = "1.59.0"
rust-version = "1.71.1"
license = "MIT OR Apache-2.0"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
5 changes: 5 additions & 0 deletions crates/astria-optimism/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
name = "astria-optimism"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.73"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

[dependencies]
ethers = { workspace = true, features = ["optimism", "ethers-solc", "ws"] }
Expand Down
5 changes: 5 additions & 0 deletions crates/astria-sequencer-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
name = "astria-sequencer-client"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.73"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

[dependencies]
astria-core = { path = "../astria-core" }
Expand All @@ -17,6 +21,7 @@ tracing = { workspace = true }
thiserror = { workspace = true }

[features]
default = ["http", "websocket"]
http = ["tendermint-rpc/http-client"]
websocket = ["tendermint-rpc/websocket-client"]

Expand Down
3 changes: 3 additions & 0 deletions crates/astria-sequencer-relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.9.1"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.73"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

[[bin]]
name = "astria-sequencer-relayer"
Expand Down
5 changes: 5 additions & 0 deletions crates/astria-sequencer-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
name = "astria-sequencer-utils"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.74.1"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

[dependencies]
clap = { workspace = true, features = ["derive"] }
Expand Down
6 changes: 5 additions & 1 deletion crates/astria-sequencer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
name = "astria-sequencer"
version = "0.8.0"
edition = "2021"
rust-version = "1.73.0"
license = "MIT OR Apache-2.0"
rust-version = "1.73"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

[[bin]]
name = "astria-sequencer"
Expand Down
6 changes: 5 additions & 1 deletion crates/astria-telemetry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
name = "astria-telemetry"
version = "0.1.0"
edition = "2021"
rust-version = "1.70.0"
rust-version = "1.72.1"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
5 changes: 5 additions & 0 deletions crates/astria-test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
name = "astria-test-utils"
version = "0.1.0"
edition = "2021"
rust-version = "1.71.1"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/astriaorg/astria"
homepage = "https://astria.org"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit 96960d8

Please sign in to comment.