Mysql client for gleam.
at master 748 B view raw
1name = "gmysql" 2version = "1.3.0" 3 4# Fill out these fields if you intend to generate HTML documentation or publish 5# your project to the Hex package manager. 6# 7description = "Gleam mysql client and connection pooler." 8licences = ["Apache-2.0"] 9repository = { type = "github", user = "VioletBuse", repo = "gmysql" } 10# links = [{ title = "Website", href = "https://gleam.run" }] 11# 12# For a full reference of all the available options, you can have a look at 13# https://gleam.run/writing-gleam/gleam-toml/. 14 15[dependencies] 16gleam_stdlib = ">= 0.34.0 and < 2.0.0" 17mysql = ">= 1.8.0 and < 2.0.0" 18gleam_erlang = ">= 0.25.0 and < 1.0.0" 19gleam_otp = ">= 0.10.0 and < 1.0.0" 20based = ">= 3.0.1 and < 4.0.0" 21 22[dev-dependencies] 23gleeunit = ">= 1.0.0 and < 2.0.0"