-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for expanding
.env
quoted values. (#180)
Switch from the dotenvy crate to dotenvs to achieve this. A patched version is used to ensure we maintain support for hard failure when invalid `.env` files are read. Fixes #166 Fixes #167
- Loading branch information
Showing
7 changed files
with
90 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ members = [ | |
|
||
[package] | ||
name = "scie-jump" | ||
version = "0.13.3" | ||
version = "0.14.0" | ||
description = "The self contained interpreted executable launcher." | ||
authors = [ | ||
"John Sirois <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jump" | ||
version = "0.13.3" | ||
version = "0.14.0" | ||
description = "The bulk of the scie-jump binary logic." | ||
authors = [ | ||
"John Sirois <[email protected]>", | ||
|
@@ -13,7 +13,6 @@ bstr = { workspace = true } | |
byteorder = "1.4" | ||
bzip2 = "0.4" | ||
dirs = "4.0" | ||
dotenvy = "0.15" | ||
fd-lock = "3.0" | ||
flate2 = "1.0" # For gz support. | ||
indexmap = { version = "1.9", features = ["serde"] } | ||
|
@@ -35,6 +34,10 @@ zip = { workspace = true } | |
zstd = "0.12" | ||
walkdir = "2.3" | ||
|
||
[dependencies.dotenvs] | ||
git = "https://github.com/jsirois/dotenvs-rs" | ||
rev = "b2276ef3fd039ed8565b4c1cbedb7a5aeeca734e" | ||
|
||
[dev-dependencies] | ||
ctor = "0.2" | ||
env_logger = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters