Skip to content

Commit e34f6f4

Browse files
Merge pull request #161 from influxdata/crepererum/dotenvy
chore: `dotenv` -> `dotenvy`
2 parents d56df16 + a5d92f2 commit e34f6f4

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ zstd = { version = "0.10", optional = true }
4141
[dev-dependencies]
4242
assert_matches = "1.5"
4343
criterion = { version = "0.3", features = ["async_tokio"] }
44-
dotenv = "0.15"
44+
dotenvy = "0.15.1"
4545
futures = "0.3"
4646
j4rs = "0.13"
4747
once_cell = "1.9"

benches/throughput.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ impl RecordExt for Record {
315315
macro_rules! maybe_skip_kafka_integration {
316316
() => {{
317317
use std::env;
318-
dotenv::dotenv().ok();
318+
dotenvy::dotenv().ok();
319319

320320
match (
321321
env::var("TEST_INTEGRATION").is_ok(),

tests/java_helper.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use time::OffsetDateTime;
1313
macro_rules! maybe_skip_java_interopt {
1414
() => {{
1515
use std::env;
16-
dotenv::dotenv().ok();
16+
dotenvy::dotenv().ok();
1717

1818
if env::var("TEST_JAVA_INTEROPT").is_err() {
1919
return;

tests/test_helpers.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use time::OffsetDateTime;
1616
macro_rules! maybe_skip_kafka_integration {
1717
() => {{
1818
use std::env;
19-
dotenv::dotenv().ok();
19+
dotenvy::dotenv().ok();
2020

2121
match (
2222
env::var("TEST_INTEGRATION").is_ok(),
@@ -80,7 +80,7 @@ macro_rules! maybe_skip_delete {
8080
macro_rules! maybe_skip_SOCKS_PROXY {
8181
() => {{
8282
use std::env;
83-
dotenv::dotenv().ok();
83+
dotenvy::dotenv().ok();
8484

8585
match (env::var("SOCKS_PROXY").ok()) {
8686
Some(proxy) => proxy,

0 commit comments

Comments
 (0)