···11+# Tiny Database
22+33+An example database library that the Wisp examples may use.
44+55+A real application likely uses a proper database such as PostgreSQL, MySQL,
66+MariaDB, or SQLite.
+13
examples/utilities/tiny_database/gleam.toml
···11+name = "tiny_database"
22+version = "1.0.0"
33+description = "A silly little database to be used in the examples"
44+licences = ["Apache-2.0"]
55+66+[dependencies]
77+gleam_stdlib = "~> 0.30"
88+simplifile = "~> 0.1"
99+ids = "~> 0.8"
1010+gleam_json = "~> 0.6"
1111+1212+[dev-dependencies]
1313+gleeunit = "~> 0.10"
+20
examples/utilities/tiny_database/manifest.toml
···11+# This file was generated by Gleam
22+# You typically do not need to edit this file
33+44+packages = [
55+ { name = "gleam_erlang", version = "0.20.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_erlang", source = "hex", outer_checksum = "F216A80C8FDFF774447B494D5E08AE4E9A911E971727B9A78FEBF5F300914584" },
66+ { name = "gleam_json", version = "0.6.0", build_tools = ["gleam"], requirements = ["thoas", "gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "C6CC5BEECA525117E97D0905013AB3F8836537455645DDDD10FE31A511B195EF" },
77+ { name = "gleam_otp", version = "0.6.0", build_tools = ["gleam"], requirements = ["gleam_erlang", "gleam_stdlib"], otp_app = "gleam_otp", source = "hex", outer_checksum = "E31B158857E3D2AF946FE6E90E0CB21699AF226F4630E93FBEAC5DB4515F8920" },
88+ { name = "gleam_stdlib", version = "0.30.1", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "704258528887F95075FFED7AAE1CCF836A9B88E3AADA2F69F9DA15815F94A4F9" },
99+ { name = "gleeunit", version = "0.11.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "1397E5C4AC4108769EE979939AC39BF7870659C5AFB714630DEEEE16B8272AD5" },
1010+ { name = "ids", version = "0.8.0", build_tools = ["gleam"], requirements = ["gleam_stdlib", "gleam_erlang", "gleam_otp"], otp_app = "ids", source = "hex", outer_checksum = "7A378014D40E848326FBEE8AC0C9B35EB9C8094DC4414D89F9A5AA99397A6042" },
1111+ { name = "simplifile", version = "0.1.10", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "263B7C7F4B29263555DEA2D30BA918425A27120CDD1E1352744EAB4D56CE01CE" },
1212+ { name = "thoas", version = "0.4.1", build_tools = ["rebar3"], requirements = [], otp_app = "thoas", source = "hex", outer_checksum = "4918D50026C073C4AB1388437132C77A6F6F7C8AC43C60C13758CC0ADCE2134E" },
1313+]
1414+1515+[requirements]
1616+gleam_json = { version = "~> 0.6" }
1717+gleam_stdlib = { version = "~> 0.30" }
1818+gleeunit = { version = "~> 0.10" }
1919+ids = { version = "~> 0.8" }
2020+simplifile = { version = "~> 0.1" }