Current section
Files
Jump to
Current section
Files
gleam.toml
name = "fhir"
version = "0.0.0"
description = "Type-safe FHIR resources and client"
licences = ["MIT"]
repository = { type = "github", user = "PotatoEMR", repo = "gleam-fhir" }
links = [
{ title = "Todo Issues", href = "https://github.com/PotatoEMR/gleam-fhir/issues/" },
]
[documentation]
pages = [
{ title = "Release Notes", path = "releasenotes.html", source = "./ReleaseNotes.md" },
{ title = " ", path = "#", source = "" },
{ title = "Documentation", path = "documentation.html", source = "./docs/Documentation.md" },
{ title = "├ Welcome", path = "documentation.html#welcome", source = "" },
{ title = "├ Quick Start", path = "documentation.html#quickstart", source = "" },
{ title = "├ Modules", path = "documentation.html#modules", source = "" },
{ title = "└ Other FHIR Docs", path = "documentation.html#otherfhirdocs", source = "" },
{ title = "Working with resources", path = "resources.html", source = "./docs/Resources.md" },
{ title = "├ Import", path = "resources.html#import", source = "" },
{ title = "├ Primitive Type", path = "resources.html#primitivetype", source = "" },
{ title = "├ Complex Type", path = "resources.html#complextype", source = "" },
{ title = "├ BackboneElement", path = "resources.html#backbone-element", source = "" },
{ title = "├ Cardinality", path = "resources.html#cardinality", source = "" },
{ title = "├ Choice Element", path = "resources.html#choice-element", source = "" },
{ title = "├ id vs Identifier", path = "resources.html#id-vs-identifier", source = "" },
{ title = "├ Reference", path = "resources.html#reference", source = "" },
{ title = "├ code", path = "resources.html#code", source = "" },
{ title = "├ Coding", path = "resources.html#coding", source = "" },
{ title = "├ CodeableConcept", path = "resources.html#codeableconcept", source = "" },
{ title = "├ CodeableReference", path = "resources.html#codeablereference", source = "" },
{ title = "├ Extension", path = "resources.html#extension", source = "" },
{ title = "├ Bundle", path = "resources.html#bundle", source = "" },
{ title = "└ Patient Example", path = "resources.html#patient-example", source = "" },
{ title = "Serialization", path = "serialization.html", source = "./docs/Serialization.md" },
{ title = "├ JSON", path = "serialization.html#json", source = "" },
{ title = "├ [resource]_to_json", path = "serialization.html#tojson", source = "" },
{ title = "├ [resource]_decoder", path = "serialization.html#decoder", source = "" },
{ title = "└ Any resource", path = "serialization.html#anyresource", source = "" },
{ title = "REST clients", path = "clients.html", source = "./docs/Clients.md" },
{ title = "├ FHIR Client", path = "clients.html#client", source = "" },
{ title = "├ Client for httpc", path = "clients.html#httpc", source = "" },
{ title = "├ Client for rsvp", path = "clients.html#rsvp", source = "" },
{ title = "├ sansio", path = "clients.html#sansio", source = "" },
{ title = "├ Handling Errors", path = "clients.html#handlingerrors", source = "" },
{ title = "├ Create", path = "clients.html#create", source = "" },
{ title = "├ Read", path = "clients.html#read", source = "" },
{ title = "├ Update", path = "clients.html#update", source = "" },
{ title = "├ Delete", path = "clients.html#delete", source = "" },
{ title = "└ Search", path = "clients.html#search", source = "" },
]
[dependencies]
gleam_stdlib = ">= 0.44.0 and < 2.0.0"
gleam_httpc = ">= 5.0.0 and < 6.0.0"
gleam_http = ">= 4.3.0 and < 5.0.0"
argv = ">= 1.0.2 and < 2.0.0"
simplifile = ">= 2.3.1 and < 3.0.0"
json = ">= 1.4.1 and < 2.0.0"
gleam_json = ">= 3.1.0 and < 4.0.0"
filepath = ">= 1.1.2 and < 2.0.0"
rsvp = ">= 1.2.0 and < 2.0.0"
lustre = ">= 5.5.2 and < 6.0.0"
[dev-dependencies]
gleeunit = ">= 1.0.0 and < 2.0.0"