Skip to content

Commit

Permalink
remove all wildcard version pin in Cargo.toml (delta-io#968)
Browse files Browse the repository at this point in the history
Wildcard version pin blocks crates.io publish

Also migrate to dotenvy because dotenv is not being maintained anymore.
  • Loading branch information
houqp authored Nov 28, 2022
1 parent fbe9e4e commit cf84886
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ optional = true

[dev-dependencies]
criterion = "0"
dotenv = "*"
dotenvy = "0"
maplit = "1"
pretty_assertions = "1.2.1"
rand = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion rust/src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl IntegrationContext {
// environment variables are loaded from .env files if found. Otherwise
// default values based on the default setting of the respective emulators are set.
#[cfg(test)]
dotenv::dotenv().ok();
dotenvy::dotenv().ok();

integration.prepare_env();

Expand Down

0 comments on commit cf84886

Please sign in to comment.