···11+#!/usr/bin/env bash
22+set -e
33+if [[ ! -d "/home/naomi/Projects/stare" ]]; then
44+ echo "Cannot find source directory; Did you move it?"
55+ echo "(Looking for "/home/naomi/Projects/stare")"
66+ echo 'Cannot force reload with this script - use "direnv reload" manually and then try again'
77+ exit 1
88+fi
99+1010+# rebuild the cache forcefully
1111+_nix_direnv_force_reload=1 direnv exec "/home/naomi/Projects/stare" true
1212+1313+# Update the mtime for .envrc.
1414+# This will cause direnv to reload again - but without re-building.
1515+touch "/home/naomi/Projects/stare/.envrc"
1616+1717+# Also update the timestamp of whatever profile_rc we have.
1818+# This makes sure that we know we are up to date.
1919+touch -r "/home/naomi/Projects/stare/.envrc" "/home/naomi/Projects/stare/.direnv"/*.rc
···11+name = "stare"
22+version = "1.0.0"
33+44+# Fill out these fields if you intend to generate HTML documentation or publish
55+# your project to the Hex package manager.
66+#
77+# description = ""
88+# licences = ["Apache-2.0"]
99+# repository = { type = "github", user = "", repo = "" }
1010+# links = [{ title = "Website", href = "" }]
1111+#
1212+# For a full reference of all the available options, you can have a look at
1313+# https://gleam.run/writing-gleam/gleam-toml/.
1414+1515+[dependencies]
1616+gleam_stdlib = ">= 0.44.0 and < 2.0.0"
1717+shellout = ">= 1.7.0 and < 2.0.0"
1818+simplifile = ">= 2.3.0 and < 3.0.0"
1919+2020+[dev-dependencies]
2121+gleeunit = ">= 1.0.0 and < 2.0.0"
+16
manifest.toml
···11+# This file was generated by Gleam
22+# You typically do not need to edit this file
33+44+packages = [
55+ { name = "filepath", version = "1.1.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "filepath", source = "hex", outer_checksum = "B06A9AF0BF10E51401D64B98E4B627F1D2E48C154967DA7AF4D0914780A6D40A" },
66+ { name = "gleam_stdlib", version = "0.63.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "5E216C7D5E8BE22359C9D7DAA2CFBD66039BC12565542F34CD033C5BB57071ED" },
77+ { name = "gleeunit", version = "1.6.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "FDC68A8C492B1E9B429249062CD9BAC9B5538C6FBF584817205D0998C42E1DAC" },
88+ { name = "shellout", version = "1.7.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "shellout", source = "hex", outer_checksum = "1BDC03438FEB97A6AF3E396F4ABEB32BECF20DF2452EC9A8C0ACEB7BDDF70B14" },
99+ { name = "simplifile", version = "2.3.0", build_tools = ["gleam"], requirements = ["filepath", "gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "0A868DAC6063D9E983477981839810DC2E553285AB4588B87E3E9C96A7FB4CB4" },
1010+]
1111+1212+[requirements]
1313+gleam_stdlib = { version = ">= 0.44.0 and < 2.0.0" }
1414+gleeunit = { version = ">= 1.0.0 and < 2.0.0" }
1515+shellout = { version = ">= 1.7.0 and < 2.0.0" }
1616+simplifile = { version = ">= 2.3.0 and < 3.0.0" }