Build YAML in Gleam!
at main 386 B view raw
1name = "cymbal" 2version = "1.0.0" 3description = "Build YAML in Gleam!" 4licences = ["Apache-2.0"] 5repository = { type = "github", user = "lpil", repo = "cymbal" } 6links = [ 7 { title = "Website", href = "https://gleam.run" }, 8 { title = "Sponsor", href = "https://github.com/sponsors/lpil" }, 9] 10 11[dependencies] 12gleam_stdlib = "~> 0.34 or ~> 1.0" 13 14[dev-dependencies] 15gleeunit = "~> 1.0"