A chess library for Gleam
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use latest compatible version of `gleeunit`

+6 -5
+4 -3
gleam.toml
··· 17 17 iv = ">= 1.3.2 and < 2.0.0" 18 18 19 19 [dev-dependencies] 20 - # For some reason, newer version of gleeunit seem to not work properly with 21 - # specifying test timeouts, so the perft tests don't work. Need to investigate. 22 - gleeunit = ">= 1.0.0 and < 1.4.0" 20 + # Versions of gleeunit above 1.6.0 specify the EUnit timeout as 60 seconds, but 21 + # this means that we can't set it higher than that so our perft tests don't work 22 + # properly. 23 + gleeunit = ">= 1.0.0 and < 1.6.0" 23 24 pocket_watch = ">= 1.0.0 and < 2.0.0"
+2 -2
manifest.toml
··· 7 7 { name = "gleam_stdlib", version = "0.62.1", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "0080706D3A5A9A36C40C68481D1D231D243AF602E6D2A2BE67BA8F8F4DFF45EC" }, 8 8 { name = "gleam_time", version = "1.4.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_time", source = "hex", outer_checksum = "DCDDC040CE97DA3D2A925CDBBA08D8A78681139745754A83998641C8A3F6587E" }, 9 9 { name = "gleam_yielder", version = "1.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_yielder", source = "hex", outer_checksum = "8E4E4ECFA7982859F430C57F549200C7749823C106759F4A19A78AEA6687717A" }, 10 - { name = "gleeunit", version = "1.3.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "A7DD6C07B7DA49A6E28796058AA89E651D233B357D5607006D70619CD89DAAAB" }, 10 + { name = "gleeunit", version = "1.5.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "D33B7736CF0766ED3065F64A1EBB351E72B2E8DE39BAFC8ADA0E35E92A6A934F" }, 11 11 { name = "humanise", version = "1.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib", "gleam_time"], otp_app = "humanise", source = "hex", outer_checksum = "5B78C52863B673F7D903117BE9262628210946406E04B6AB09554D5C2A7F15F0" }, 12 12 { name = "iv", version = "1.3.2", build_tools = ["gleam"], requirements = ["gleam_stdlib", "gleam_yielder"], otp_app = "iv", source = "hex", outer_checksum = "1FE22E047705BE69EA366E3A2E73C2E1310CBCB27DDE767DE17AE3FA86499947" }, 13 13 { name = "pocket_watch", version = "1.0.0", build_tools = ["gleam"], requirements = ["birl", "gleam_stdlib", "humanise"], otp_app = "pocket_watch", source = "hex", outer_checksum = "CD8784CAC29735CDC2E6A67212FFC1C60A13A48D8F74470CE3DE15D41447227C" }, ··· 16 16 17 17 [requirements] 18 18 gleam_stdlib = { version = ">= 0.44.0 and < 2.0.0" } 19 - gleeunit = { version = ">= 1.0.0 and < 1.4.0" } 19 + gleeunit = { version = ">= 1.0.0 and < 1.6.0" } 20 20 iv = { version = ">= 1.3.2 and < 2.0.0" } 21 21 pocket_watch = { version = ">= 1.0.0 and < 2.0.0" }