this repo has no description
4
fork

Configure Feed

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

update gleam.toml’s and readme’s for the libs

+37 -120
+4 -12
formz/gleam.toml
··· 1 + # For a full reference of all the available options, you can have a look at 2 + # https://gleam.run/writing-gleam/gleam-toml/. 1 3 name = "formz" 2 - version = "0.1.0" 4 + version = "0.1.1" 3 5 description = "Accessible, type safe form parsing and generating for Gleam" 4 6 licences = ["Unlicense"] 5 - 6 - # Fill out these fields if you intend to generate HTML documentation or publish 7 - # your project to the Hex package manager. 8 - # 9 - # description = "" 10 - # licences = ["Apache-2.0"] 11 - # repository = { type = "github", user = "", repo = "" } 12 - # links = [{ title = "Website", href = "" }] 13 - # 14 - # For a full reference of all the available options, you can have a look at 15 - # https://gleam.run/writing-gleam/gleam-toml/. 7 + repository = { type = "github", user = "bentomas", repo = "formz" } 16 8 17 9 [dependencies] 18 10 gleam_stdlib = ">= 0.34.0 and < 2.0.0"
+2 -19
formz_lustre/README.md
··· 3 3 [![Package Version](https://img.shields.io/hexpm/v/formz_lustre)](https://hex.pm/packages/formz_lustre) 4 4 [![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/formz_lustre/) 5 5 6 - ```sh 7 - gleam add formz_lustre@1 8 - ``` 9 - ```gleam 10 - import formz_lustre 11 - 12 - pub fn main() { 13 - // TODO: An example of the project in use 14 - } 15 - ``` 16 - 17 - Further documentation can be found at <https://hexdocs.pm/formz_lustre>. 18 - 19 - ## Development 20 - 21 - ```sh 22 - gleam run # Run the project 23 - gleam test # Run the tests 24 - ``` 6 + Lustre widgets and field definitions for the formz library. See [formz](https://hexdocs.pm/formz/) 7 + for details on how to use these.
+6 -14
formz_lustre/gleam.toml
··· 1 + # For a full reference of all the available options, you can have a look at 2 + # https://gleam.run/writing-gleam/gleam-toml/. 1 3 name = "formz_lustre" 2 - version = "0.1.0" 4 + version = "0.1.1" 3 5 description = "Lustre widgets and field definitions for the formz library." 4 6 licences = ["Unlicense"] 5 - 6 - # Fill out these fields if you intend to generate HTML documentation or publish 7 - # your project to the Hex package manager. 8 - # 9 - # description = "" 10 - # licences = ["Apache-2.0"] 11 - # repository = { type = "github", user = "", repo = "" } 12 - # links = [{ title = "Website", href = "" }] 13 - # 14 - # For a full reference of all the available options, you can have a look at 15 - # https://gleam.run/writing-gleam/gleam-toml/. 7 + repository = { type = "github", user = "bentomas", repo = "formz" } 16 8 17 9 [dependencies] 18 - formz = { path = "../formz" } 10 + formz = ">= 0.1.1 and < 1.0.0" 19 11 gleam_stdlib = ">= 0.34.0 and < 2.0.0" 20 12 lustre = ">= 4.5.1 and < 5.0.0" 21 13 22 14 [dev-dependencies] 23 15 gleeunit = ">= 1.0.0 and < 2.0.0" 24 - formz_string = { path = "../formz_string" } 16 + formz_string = ">= 0.1.0 and < 1.0.0"
+4 -4
formz_lustre/manifest.toml
··· 2 2 # You typically do not need to edit this file 3 3 4 4 packages = [ 5 - { name = "formz", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib", "justin"], source = "local", path = "../formz" }, 6 - { name = "formz_string", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], source = "local", path = "../formz_string" }, 5 + { name = "formz", version = "0.1.1", build_tools = ["gleam"], requirements = ["gleam_stdlib", "justin"], otp_app = "formz", source = "hex", outer_checksum = "A44D63EDEEB05775EE04817090C193B03DBF23BF9395F25595DE71A556FACB1D" }, 6 + { name = "formz_string", version = "0.1.0", build_tools = ["gleam"], requirements = ["formz", "gleam_stdlib"], otp_app = "formz_string", source = "hex", outer_checksum = "8260E5730329887E3A6E35B1B24EA1F71AE10054DAA7775281109DCA52778EA8" }, 7 7 { name = "gleam_erlang", version = "0.27.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_erlang", source = "hex", outer_checksum = "DE468F676D71B313C6C8C5334425CFCF827837333F8AB47B64D8A6D7AA40185D" }, 8 8 { name = "gleam_json", version = "1.0.1", build_tools = ["gleam"], requirements = ["gleam_stdlib", "thoas"], otp_app = "gleam_json", source = "hex", outer_checksum = "9063D14D25406326C0255BDA0021541E797D8A7A12573D849462CAFED459F6EB" }, 9 9 { name = "gleam_otp", version = "0.12.1", build_tools = ["gleam"], requirements = ["gleam_erlang", "gleam_stdlib"], otp_app = "gleam_otp", source = "hex", outer_checksum = "BFACC1513410DF5A1617169A9CD7EA334973AC71D860A17574BA7B2EADD89A6F" }, ··· 15 15 ] 16 16 17 17 [requirements] 18 - formz = { path = "../formz" } 19 - formz_string = { path = "../formz_string" } 18 + formz = { version = ">= 0.1.1 and < 1.0.0" } 19 + formz_string = { version = ">= 0.1.0 and < 1.0.0" } 20 20 gleam_stdlib = { version = ">= 0.34.0 and < 2.0.0" } 21 21 gleeunit = { version = ">= 1.0.0 and < 2.0.0" } 22 22 lustre = { version = ">= 4.5.1 and < 5.0.0" }
+2 -19
formz_nakai/README.md
··· 3 3 [![Package Version](https://img.shields.io/hexpm/v/formz_nakai)](https://hex.pm/packages/formz_nakai) 4 4 [![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/formz_nakai/) 5 5 6 - ```sh 7 - gleam add formz_nakai@1 8 - ``` 9 - ```gleam 10 - import formz_nakai 11 - 12 - pub fn main() { 13 - // TODO: An example of the project in use 14 - } 15 - ``` 16 - 17 - Further documentation can be found at <https://hexdocs.pm/formz_nakai>. 18 - 19 - ## Development 20 - 21 - ```sh 22 - gleam run # Run the project 23 - gleam test # Run the tests 24 - ``` 6 + Nakai widgets and field definitions for the formz library. See [formz](https://hexdocs.pm/formz/) 7 + for details on how to use these.
+6 -14
formz_nakai/gleam.toml
··· 1 + # For a full reference of all the available options, you can have a look at 2 + # https://gleam.run/writing-gleam/gleam-toml/. 1 3 name = "formz_nakai" 2 - version = "0.1.0" 4 + version = "0.1.1" 3 5 description = "Nakai widgets and field definitions for the formz library." 4 6 licences = ["Unlicense"] 5 - 6 - # Fill out these fields if you intend to generate HTML documentation or publish 7 - # your project to the Hex package manager. 8 - # 9 - # description = "" 10 - # licences = ["Apache-2.0"] 11 - # repository = { type = "github", user = "", repo = "" } 12 - # links = [{ title = "Website", href = "" }] 13 - # 14 - # For a full reference of all the available options, you can have a look at 15 - # https://gleam.run/writing-gleam/gleam-toml/. 7 + repository = { type = "github", user = "bentomas", repo = "formz" } 16 8 17 9 [dependencies] 18 - formz = { path = "../formz" } 10 + formz = ">= 0.1.1 and < 1.0.0" 19 11 gleam_stdlib = ">= 0.34.0 and < 2.0.0" 20 12 nakai = ">= 1.0.0 and < 2.0.0" 21 13 22 14 [dev-dependencies] 23 15 gleeunit = ">= 1.0.0 and < 2.0.0" 24 - formz_string = { path = "../formz_string" } 16 + formz_string = ">= 0.1.0 and < 1.0.0"
+4 -4
formz_nakai/manifest.toml
··· 2 2 # You typically do not need to edit this file 3 3 4 4 packages = [ 5 - { name = "formz", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib", "justin"], source = "local", path = "../formz" }, 6 - { name = "formz_string", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], source = "local", path = "../formz_string" }, 5 + { name = "formz", version = "0.1.1", build_tools = ["gleam"], requirements = ["gleam_stdlib", "justin"], otp_app = "formz", source = "hex", outer_checksum = "A44D63EDEEB05775EE04817090C193B03DBF23BF9395F25595DE71A556FACB1D" }, 6 + { name = "formz_string", version = "0.1.0", build_tools = ["gleam"], requirements = ["formz", "gleam_stdlib"], otp_app = "formz_string", source = "hex", outer_checksum = "8260E5730329887E3A6E35B1B24EA1F71AE10054DAA7775281109DCA52778EA8" }, 7 7 { name = "gleam_stdlib", version = "0.40.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "86606B75A600BBD05E539EB59FABC6E307EEEA7B1E5865AFB6D980A93BCB2181" }, 8 8 { name = "gleeunit", version = "1.2.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "F7A7228925D3EE7D0813C922E062BFD6D7E9310F0BEE585D3A42F3307E3CFD13" }, 9 9 { name = "justin", version = "1.0.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "justin", source = "hex", outer_checksum = "7FA0C6DB78640C6DC5FBFD59BF3456009F3F8B485BF6825E97E1EB44E9A1E2CD" }, ··· 11 11 ] 12 12 13 13 [requirements] 14 - formz = { path = "../formz" } 15 - formz_string = { path = "../formz_string" } 14 + formz = { version = ">= 0.1.1 and < 1.0.0" } 15 + formz_string = { version = ">= 0.1.0 and < 1.0.0" } 16 16 gleam_stdlib = { version = ">= 0.34.0 and < 2.0.0" } 17 17 gleeunit = { version = ">= 1.0.0 and < 2.0.0" } 18 18 nakai = { version = ">= 1.0.0 and < 2.0.0" }
+2 -19
formz_string/README.md
··· 3 3 [![Package Version](https://img.shields.io/hexpm/v/formz_string)](https://hex.pm/packages/formz_string) 4 4 [![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/formz_string/) 5 5 6 - ```sh 7 - gleam add formz_string@1 8 - ``` 9 - ```gleam 10 - import formz_string 11 - 12 - pub fn main() { 13 - // TODO: An example of the project in use 14 - } 15 - ``` 16 - 17 - Further documentation can be found at <https://hexdocs.pm/formz_string>. 18 - 19 - ## Development 20 - 21 - ```sh 22 - gleam run # Run the project 23 - gleam test # Run the tests 24 - ``` 6 + String widgets and field definitions for the formz library. See [formz](https://hexdocs.pm/formz/) 7 + for details on how to use these.
+5 -13
formz_string/gleam.toml
··· 1 + # For a full reference of all the available options, you can have a look at 2 + # https://gleam.run/writing-gleam/gleam-toml/. 1 3 name = "formz_string" 2 - version = "0.1.0" 4 + version = "0.1.1" 3 5 description = "String widgets and field definitions for the formz library." 4 6 licences = ["Unlicense"] 5 - 6 - # Fill out these fields if you intend to generate HTML documentation or publish 7 - # your project to the Hex package manager. 8 - # 9 - # description = "" 10 - # licences = ["Apache-2.0"] 11 - # repository = { type = "github", user = "", repo = "" } 12 - # links = [{ title = "Website", href = "" }] 13 - # 14 - # For a full reference of all the available options, you can have a look at 15 - # https://gleam.run/writing-gleam/gleam-toml/. 7 + repository = { type = "github", user = "bentomas", repo = "formz" } 16 8 17 9 [dependencies] 18 - formz = { path = "../formz" } 10 + formz = ">= 0.1.0 and < 1.0.0" 19 11 gleam_stdlib = ">= 0.34.0 and < 2.0.0" 20 12 21 13 [dev-dependencies]
+2 -2
formz_string/manifest.toml
··· 6 6 { name = "birdie", version = "1.2.3", build_tools = ["gleam"], requirements = ["argv", "edit_distance", "filepath", "glance", "gleam_community_ansi", "gleam_erlang", "gleam_stdlib", "justin", "rank", "simplifile", "trie_again"], otp_app = "birdie", source = "hex", outer_checksum = "AE1207210E9CC8F4170BCE3FB3C23932F314C352C3FD1BCEA44CF4BF8CF60F93" }, 7 7 { name = "edit_distance", version = "2.0.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "edit_distance", source = "hex", outer_checksum = "A1E485C69A70210223E46E63985FA1008B8B2DDA9848B7897469171B29020C05" }, 8 8 { name = "filepath", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "filepath", source = "hex", outer_checksum = "EFB6FF65C98B2A16378ABC3EE2B14124168C0CE5201553DE652E2644DCFDB594" }, 9 - { name = "formz", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib", "justin"], source = "local", path = "../formz" }, 9 + { name = "formz", version = "0.1.1", build_tools = ["gleam"], requirements = ["gleam_stdlib", "justin"], otp_app = "formz", source = "hex", outer_checksum = "A44D63EDEEB05775EE04817090C193B03DBF23BF9395F25595DE71A556FACB1D" }, 10 10 { name = "glance", version = "0.11.0", build_tools = ["gleam"], requirements = ["gleam_stdlib", "glexer"], otp_app = "glance", source = "hex", outer_checksum = "8F3314D27773B7C3B9FB58D8C02C634290422CE531988C0394FA0DF8676B964D" }, 11 11 { name = "gleam_community_ansi", version = "1.4.1", build_tools = ["gleam"], requirements = ["gleam_community_colour", "gleam_stdlib"], otp_app = "gleam_community_ansi", source = "hex", outer_checksum = "4CD513FC62523053E62ED7BAC2F36136EC17D6A8942728250A9A00A15E340E4B" }, 12 12 { 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" }, ··· 24 24 25 25 [requirements] 26 26 birdie = { version = ">= 1.2.3 and < 2.0.0" } 27 - formz = { path = "../formz" } 27 + formz = { version = ">= 0.1.0 and < 1.0.0" } 28 28 gleam_stdlib = { version = ">= 0.34.0 and < 2.0.0" } 29 29 gleeunit = { version = ">= 1.0.0 and < 2.0.0" }