Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

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

v1.18.0-rc1

+23 -23
+1 -1
CHANGELOG.md
··· 5 5 6 6 # Changelog 7 7 8 - ## Unreleased 8 + ## v1.18.0-rc1 - 2026-07-21 9 9 10 10 ### Compiler 11 11
+11 -11
Cargo.lock
··· 1169 1169 1170 1170 [[package]] 1171 1171 name = "gleam" 1172 - version = "1.17.0" 1172 + version = "1.18.0-rc1" 1173 1173 dependencies = [ 1174 1174 "gleam-cli", 1175 1175 "static_vcruntime", ··· 1177 1177 1178 1178 [[package]] 1179 1179 name = "gleam-cli" 1180 - version = "1.17.0" 1180 + version = "1.18.0-rc1" 1181 1181 dependencies = [ 1182 1182 "async-trait", 1183 1183 "base16", ··· 1230 1230 1231 1231 [[package]] 1232 1232 name = "gleam-core" 1233 - version = "1.17.0" 1233 + version = "1.18.0-rc1" 1234 1234 dependencies = [ 1235 1235 "age", 1236 1236 "askama", ··· 1290 1290 1291 1291 [[package]] 1292 1292 name = "gleam-format" 1293 - version = "1.17.0" 1293 + version = "1.18.0-rc1" 1294 1294 dependencies = [ 1295 1295 "camino", 1296 1296 "ecow", ··· 1303 1303 1304 1304 [[package]] 1305 1305 name = "gleam-language-server" 1306 - version = "1.17.0" 1306 + version = "1.18.0-rc1" 1307 1307 dependencies = [ 1308 1308 "camino", 1309 1309 "debug-ignore", ··· 1327 1327 1328 1328 [[package]] 1329 1329 name = "gleam-wasm" 1330 - version = "1.17.0" 1330 + version = "1.18.0-rc1" 1331 1331 dependencies = [ 1332 1332 "camino", 1333 1333 "console_error_panic_hook", ··· 1400 1400 1401 1401 [[package]] 1402 1402 name = "hexpm" 1403 - version = "1.17.0" 1403 + version = "1.18.0-rc1" 1404 1404 dependencies = [ 1405 1405 "base16", 1406 1406 "bytes", ··· 3443 3443 3444 3444 [[package]] 3445 3445 name = "test-commands" 3446 - version = "1.17.0" 3446 + version = "1.18.0-rc1" 3447 3447 dependencies = [ 3448 3448 "camino", 3449 3449 "gleam-cli", ··· 3468 3468 3469 3469 [[package]] 3470 3470 name = "test-output" 3471 - version = "1.17.0" 3471 + version = "1.18.0-rc1" 3472 3472 dependencies = [ 3473 3473 "camino", 3474 3474 "gleam-cli", ··· 3479 3479 3480 3480 [[package]] 3481 3481 name = "test-package-compiler" 3482 - version = "1.17.0" 3482 + version = "1.18.0-rc1" 3483 3483 dependencies = [ 3484 3484 "camino", 3485 3485 "gleam-core", ··· 3493 3493 3494 3494 [[package]] 3495 3495 name = "test-project-compiler" 3496 - version = "1.17.0" 3496 + version = "1.18.0-rc1" 3497 3497 dependencies = [ 3498 3498 "camino", 3499 3499 "gleam-core",
+1 -1
compiler-cli/Cargo.toml
··· 3 3 4 4 [package] 5 5 name = "gleam-cli" 6 - version = "1.17.0" 6 + version = "1.18.0-rc1" 7 7 authors = ["Louis Pilfold <louis@lpil.uk>"] 8 8 edition = "2024" 9 9 license = "Apache-2.0"
+1 -1
compiler-core/Cargo.toml
··· 3 3 4 4 [package] 5 5 name = "gleam-core" 6 - version = "1.17.0" 6 + version = "1.18.0-rc1" 7 7 authors = ["Louis Pilfold <louis@lpil.uk>"] 8 8 edition = "2024" 9 9 license = "Apache-2.0"
+1 -1
compiler-wasm/Cargo.toml
··· 3 3 4 4 [package] 5 5 name = "gleam-wasm" 6 - version = "1.17.0" 6 + version = "1.18.0-rc1" 7 7 authors = ["Louis Pilfold <louis@lpil.uk>"] 8 8 edition = "2024" 9 9 license = "Apache-2.0"
+1 -1
format/Cargo.toml
··· 3 3 4 4 [package] 5 5 name = "gleam-format" 6 - version = "1.17.0" 6 + version = "1.18.0-rc1" 7 7 authors = ["Louis Pilfold <louis@lpil.uk>"] 8 8 edition = "2024" 9 9 license = "Apache-2.0"
+1 -1
gleam-bin/Cargo.toml
··· 3 3 4 4 [package] 5 5 name = "gleam" 6 - version = "1.17.0" 6 + version = "1.18.0-rc1" 7 7 authors = ["Louis Pilfold <louis@lpil.uk>"] 8 8 edition = "2024" 9 9 license = "Apache-2.0"
+1 -1
hexpm/Cargo.toml
··· 3 3 4 4 [package] 5 5 name = "hexpm" 6 - version = "1.17.0" 6 + version = "1.18.0-rc1" 7 7 authors = ["Louis Pilfold <louis@lpil.uk>"] 8 8 edition = "2024" 9 9 license = "Apache-2.0"
+1 -1
language-server/Cargo.toml
··· 3 3 4 4 [package] 5 5 name = "gleam-language-server" 6 - version = "1.17.0" 6 + version = "1.18.0-rc1" 7 7 authors = ["Louis Pilfold <louis@lpil.uk>"] 8 8 edition = "2024" 9 9 license = "Apache-2.0"
+1 -1
test-commands/Cargo.toml
··· 3 3 4 4 [package] 5 5 name = "test-commands" 6 - version = "1.17.0" 6 + version = "1.18.0-rc1" 7 7 authors = ["Louis Pilfold <louis@lpil.uk>"] 8 8 edition = "2024" 9 9 license = "Apache-2.0"
+1 -1
test-output/Cargo.toml
··· 3 3 4 4 [package] 5 5 name = "test-output" 6 - version = "1.17.0" 6 + version = "1.18.0-rc1" 7 7 authors = ["Louis Pilfold <louis@lpil.uk>"] 8 8 edition = "2024" 9 9 license = "Apache-2.0"
+1 -1
test-package-compiler/Cargo.toml
··· 3 3 4 4 [package] 5 5 name = "test-package-compiler" 6 - version = "1.17.0" 6 + version = "1.18.0-rc1" 7 7 authors = ["Louis Pilfold <louis@lpil.uk>"] 8 8 edition = "2024" 9 9 license = "Apache-2.0"
+1 -1
test-project-compiler/Cargo.toml
··· 3 3 4 4 [package] 5 5 name = "test-project-compiler" 6 - version = "1.17.0" 6 + version = "1.18.0-rc1" 7 7 authors = ["Louis Pilfold <louis@lpil.uk>"] 8 8 edition = "2024" 9 9 license = "Apache-2.0"