🐦‍⬛ Snapshot testing in Gleam

:arrow_up: Change dependencies contraints

Changed files
+22 -22
+10 -10
gleam.toml
··· 7 7 target = "erlang" 8 8 9 9 [dependencies] 10 - gleam_stdlib = "~> 0.34 or ~> 1.0" 11 - simplifile = "~> 1.2" 12 - justin = "~> 1.0" 13 - gleam_community_ansi = "~> 1.4" 14 - argv = "~> 1.0" 15 - gleam_erlang = "~> 0.24" 16 - rank = "~> 1.0" 17 - glance = "~> 0.10" 18 - trie_again = "~> 1.1" 19 - filepath = "~> 1.0" 10 + gleam_stdlib = ">= 0.38.0 and < 1.0.0" 11 + simplifile = ">= 1.7.0 and < 2.0.0" 12 + justin = ">= 1.0.1 and < 2.0.0" 13 + gleam_community_ansi = ">= 1.4.0 and < 2.0.0" 14 + argv = ">= 1.0.2 and < 2.0.0" 15 + gleam_erlang = ">= 0.25.0 and < 1.0.0" 16 + rank = ">= 1.0.0 and < 2.0.0" 17 + glance = ">= 0.11.0 and < 1.0.0" 18 + filepath = ">= 1.0.0 and < 2.0.0" 19 + trie_again = ">= 1.1.2 and < 2.0.0" 20 20 21 21 [dev-dependencies] 22 22 gleeunit = "~> 1.1"
+12 -12
manifest.toml
··· 9 9 { name = "gleam_community_colour", version = "1.4.0", build_tools = ["gleam"], requirements = ["gleam_json", "gleam_stdlib"], otp_app = "gleam_community_colour", source = "hex", outer_checksum = "795964217EBEDB3DA656F5EB8F67D7AD22872EB95182042D3E7AFEF32D3FD2FE" }, 10 10 { name = "gleam_erlang", version = "0.25.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_erlang", source = "hex", outer_checksum = "054D571A7092D2A9727B3E5D183B7507DAB0DA41556EC9133606F09C15497373" }, 11 11 { name = "gleam_json", version = "1.0.1", build_tools = ["gleam"], requirements = ["gleam_stdlib", "thoas"], otp_app = "gleam_json", source = "hex", outer_checksum = "9063D14D25406326C0255BDA0021541E797D8A7A12573D849462CAFED459F6EB" }, 12 - { name = "gleam_stdlib", version = "0.37.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "5398BD6C2ABA17338F676F42F404B9B7BABE1C8DC7380031ACB05BBE1BCF3742" }, 12 + { name = "gleam_stdlib", version = "0.38.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "663CF11861179AF415A625307447775C09404E752FF99A24E2057C835319F1BE" }, 13 13 { name = "gleeunit", version = "1.1.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "72CDC3D3F719478F26C4E2C5FED3E657AC81EC14A47D2D2DEBB8693CA3220C3B" }, 14 14 { name = "glexer", version = "1.0.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "glexer", source = "hex", outer_checksum = "BD477AD657C2B637FEF75F2405FAEFFA533F277A74EF1A5E17B55B1178C228FB" }, 15 15 { name = "justin", version = "1.0.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "justin", source = "hex", outer_checksum = "7FA0C6DB78640C6DC5FBFD59BF3456009F3F8B485BF6825E97E1EB44E9A1E2CD" }, 16 16 { name = "rank", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "rank", source = "hex", outer_checksum = "5660E361F0E49CBB714CC57CC4C89C63415D8986F05B2DA0C719D5642FAD91C9" }, 17 17 { name = "simplifile", version = "1.7.0", build_tools = ["gleam"], requirements = ["filepath", "gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "1D5DFA3A2F9319EC85825F6ED88B8E449F381B0D55A62F5E61424E748E7DDEB0" }, 18 - { name = "thoas", version = "1.2.0", build_tools = ["rebar3"], requirements = [], otp_app = "thoas", source = "hex", outer_checksum = "540C8CB7D9257F2AD0A14145DC23560F91ACDCA995F0CCBA779EB33AF5D859D1" }, 18 + { name = "thoas", version = "1.2.1", build_tools = ["rebar3"], requirements = [], otp_app = "thoas", source = "hex", outer_checksum = "E38697EDFFD6E91BD12CEA41B155115282630075C2A727E7A6B2947F5408B86A" }, 19 19 { name = "trie_again", version = "1.1.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "trie_again", source = "hex", outer_checksum = "5B19176F52B1BD98831B57FDC97BD1F88C8A403D6D8C63471407E78598E27184" }, 20 20 ] 21 21 22 22 [requirements] 23 - argv = { version = "~> 1.0" } 24 - filepath = { version = "~> 1.0" } 25 - glance = { version = "~> 0.10" } 26 - gleam_community_ansi = { version = "~> 1.4" } 27 - gleam_erlang = { version = "~> 0.24" } 28 - gleam_stdlib = { version = "~> 0.34 or ~> 1.0" } 23 + argv = { version = ">= 1.0.2 and < 2.0.0" } 24 + filepath = { version = ">= 1.0.0 and < 2.0.0" } 25 + glance = { version = ">= 0.11.0 and < 1.0.0" } 26 + gleam_community_ansi = { version = ">= 1.4.0 and < 2.0.0" } 27 + gleam_erlang = { version = ">= 0.25.0 and < 1.0.0" } 28 + gleam_stdlib = { version = ">= 0.38.0 and < 1.0.0" } 29 29 gleeunit = { version = "~> 1.1" } 30 - justin = { version = "~> 1.0" } 31 - rank = { version = "~> 1.0" } 32 - simplifile = { version = "~> 1.2" } 33 - trie_again = { version = "~> 1.1" } 30 + justin = { version = ">= 1.0.1 and < 2.0.0" } 31 + rank = { version = ">= 1.0.0 and < 2.0.0" } 32 + simplifile = { version = ">= 1.7.0 and < 2.0.0" } 33 + trie_again = { version = ">= 1.1.2 and < 2.0.0"}