Bump deps to work on latest

This commit is contained in:
Mikko Ahlroth 2024-08-18 13:44:19 +03:00
parent b47ab34f58
commit 757302a514
4 changed files with 25 additions and 17 deletions

View file

@ -1,2 +1,2 @@
gleam 0.34.1
nodejs 20.10.0
gleam 1.4.1
nodejs 22.4.1

View file

@ -1,3 +1,10 @@
3.0.1
-----
* Updated for Gleam 1.x.
* Bumped gleam_json to also accept 2.0.
* Updated repository location.
3.0.0
-----

View file

@ -1,20 +1,20 @@
name = "varasto"
version = "3.0.0"
version = "3.0.1"
description = "Typed access to LocalStorage/SessionStorage in Gleam"
target = "javascript"
gleam = "~> 0.34.1 or ~> 1.0.0"
gleam = ">= 0.34.1 and <= 2.0.0"
# Fill out these fields if you intend to generate HTML documentation or publish
# your project to the Hex package manager.
#
licences = ["MIT"]
repository = { type = "gitlab", user = "Nicd", repo = "varasto" }
repository = { type = "forgejo", host = "git.ahlcode.fi", user = "nicd", repo = "varasto" }
links = []
[dependencies]
gleam_stdlib = "~> 0.34"
gleam_stdlib = ">= 0.34.0 and <= 2.0.0"
plinth = ">= 0.1.2"
gleam_json = "~> 1.0"
gleam_json = ">= 1.0.0 and <= 3.0.0"
[dev-dependencies]
gleeunit = "~> 1.0"
gleeunit = "~> 1.2"

View file

@ -2,16 +2,17 @@
# You typically do not need to edit this file
packages = [
{ name = "gleam_javascript", version = "0.8.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_javascript", source = "hex", outer_checksum = "14D5B7E1A70681E0776BF0A0357F575B822167960C844D3D3FA114D3A75F05A8" },
{ name = "gleam_json", version = "1.0.0", build_tools = ["gleam"], requirements = ["thoas", "gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "8B197DD5D578EA6AC2C0D4BDC634C71A5BCA8E7DB5F47091C263ECB411A60DF3" },
{ name = "gleam_stdlib", version = "0.36.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "C0D14D807FEC6F8A08A7C9EF8DFDE6AE5C10E40E21325B2B29365965D82EB3D4" },
{ name = "gleeunit", version = "1.0.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "D364C87AFEB26BDB4FB8A5ABDE67D635DC9FA52D6AB68416044C35B096C6882D" },
{ name = "plinth", version = "0.1.5", build_tools = ["gleam"], requirements = ["gleam_stdlib", "gleam_javascript"], otp_app = "plinth", source = "hex", outer_checksum = "822FE76847D4D506EB740C5F7C61EC509EC6100677FF025FCCACC08F3A33A125" },
{ name = "thoas", version = "0.4.1", build_tools = ["rebar3"], requirements = [], otp_app = "thoas", source = "hex", outer_checksum = "4918D50026C073C4AB1388437132C77A6F6F7C8AC43C60C13758CC0ADCE2134E" },
{ name = "conversation", version = "1.4.3", build_tools = ["gleam"], requirements = ["gleam_http", "gleam_javascript", "gleam_stdlib"], otp_app = "conversation", source = "hex", outer_checksum = "908B46F60444442785A495197D482558AD8B849C3714A38FAA1940358CC8CCCD" },
{ name = "gleam_http", version = "3.6.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_http", source = "hex", outer_checksum = "8C07DF9DF8CC7F054C650839A51C30A7D3C26482AC241C899C1CEA86B22DBE51" },
{ name = "gleam_javascript", version = "0.11.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_javascript", source = "hex", outer_checksum = "483631D3001FCE8EB12ADEAD5E1B808440038E96F93DA7A32D326C82F480C0B2" },
{ name = "gleam_json", version = "2.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "CB10B0E7BF44282FB25162F1A24C1A025F6B93E777CCF238C4017E4EEF2CDE97" },
{ name = "gleam_stdlib", version = "0.39.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "2D7DE885A6EA7F1D5015D1698920C9BAF7241102836CE0C3837A4F160128A9C4" },
{ name = "gleeunit", version = "1.2.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "F7A7228925D3EE7D0813C922E062BFD6D7E9310F0BEE585D3A42F3307E3CFD13" },
{ name = "plinth", version = "0.4.12", build_tools = ["gleam"], requirements = ["conversation", "gleam_javascript", "gleam_json", "gleam_stdlib"], otp_app = "plinth", source = "hex", outer_checksum = "3727B517C05BD4D49A4AF34BA7E63E03CA77B4E8AD2A4DCE60266B28717C1F9A" },
]
[requirements]
gleam_json = { version = "~> 1.0" }
gleam_stdlib = { version = "~> 0.34" }
gleeunit = { version = "~> 1.0" }
gleam_json = { version = ">= 1.0.0 and <= 3.0.0" }
gleam_stdlib = { version = ">= 0.34.0 and <= 2.0.0" }
gleeunit = { version = "~> 1.2" }
plinth = { version = ">= 0.1.2" }