Skip to content

Commit

Permalink
chore: Remove resolver setting (#260)
Browse files Browse the repository at this point in the history
# Description

This PR implements the following changes:

- [x] Remove the `resolver` setting from the workspace `Cargo.toml`
- [x] Remove whitespace from the `enum-assoc` version

The `resolver` setting of `2` is implicit when using Rust 2021:
https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html

## Type of change

- [x] Refactor (non-breaking change that updates existing functionality)

## Test plan (required)

Build and run the tests. Everything should work without failures.
  • Loading branch information
bgins authored Aug 25, 2023
1 parent 5c3e916 commit 62ae755
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ members = [
"homestar-functions",
"homestar-runtime",
"homestar-wasm"]
resolver = "2"

[workspace.package]
authors = [
Expand All @@ -22,7 +21,7 @@ async-trait = "0.1"
atomic_refcell = "0.1"
byte-unit = { version = "4.0", default-features = false }
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
enum-assoc = " 1.1"
enum-assoc = "1.1"
enum-as-inner = "0.6"
futures = "0.3"
humantime = "2.1"
Expand Down

0 comments on commit 62ae755

Please sign in to comment.