···11-# cartography_api
22-33-[](https://hex.pm/packages/cartography_api)
44-[](https://hexdocs.pm/cartography_api/)
55-66-```sh
77-gleam add cartography_api@1
88-```
99-1010-```gleam
1111-import cartography_api
1212-1313-pub fn main() -> Nil {
1414- // TODO: An example of the project in use
1515-}
1616-```
1717-1818-Further documentation can be found at <https://hexdocs.pm/cartography_api>.
1919-2020-## Development
2121-2222-```sh
2323-gleam run # Run the project
2424-gleam test # Run the tests
2525-```
-22
api/gleam.toml
···11-name = "cartography_api"
22-version = "1.0.0"
33-44-# Fill out these fields if you intend to generate HTML documentation or publish
55-# your project to the Hex package manager.
66-#
77-# description = ""
88-# licences = ["Apache-2.0"]
99-# repository = { type = "github", user = "", repo = "" }
1010-# links = [{ title = "Website", href = "" }]
1111-#
1212-# For a full reference of all the available options, you can have a look at
1313-# https://gleam.run/writing-gleam/gleam-toml/.
1414-1515-[dependencies]
1616-gleam_stdlib = ">= 0.44.0 and < 2.0.0"
1717-gleam_json = ">= 3.1.0 and < 4.0.0"
1818-squirtle = ">= 1.4.0 and < 2.0.0"
1919-youid = ">= 1.5.1 and < 2.0.0"
2020-2121-[dev-dependencies]
2222-gleeunit = ">= 1.0.0 and < 2.0.0"
-19
api/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_crypto", version = "1.5.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_crypto", source = "hex", outer_checksum = "50774BAFFF1144E7872814C566C5D653D83A3EBF23ACC3156B757A1B6819086E" },
66- { name = "gleam_json", version = "3.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "44FDAA8847BE8FC48CA7A1C089706BD54BADCC4C45B237A992EDDF9F2CDB2836" },
77- { name = "gleam_stdlib", version = "0.68.1", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "F7FAEBD8EF260664E86A46C8DBA23508D1D11BB3BCC6EE1B89B3BC3E5C83FF1E" },
88- { name = "gleam_time", version = "1.7.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_time", source = "hex", outer_checksum = "56DB0EF9433826D3B99DB0B4AF7A2BFED13D09755EC64B1DAAB46F804A9AD47D" },
99- { name = "gleeunit", version = "1.9.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "DA9553CE58B67924B3C631F96FE3370C49EB6D6DC6B384EC4862CC4AAA718F3C" },
1010- { name = "squirtle", version = "1.4.0", build_tools = ["gleam"], requirements = ["gleam_json", "gleam_stdlib"], otp_app = "squirtle", source = "hex", outer_checksum = "B4DCF7ED3E829E1DB6163F3E18677EF0862DF3F4CE076D98628EBB8D9BC974BC" },
1111- { name = "youid", version = "1.5.1", build_tools = ["gleam"], requirements = ["gleam_crypto", "gleam_stdlib", "gleam_time"], otp_app = "youid", source = "hex", outer_checksum = "580E909FD704DB16416D5CB080618EDC2DA0F1BE4D21B490C0683335E3FFC5AF" },
1212-]
1313-1414-[requirements]
1515-gleam_json = { version = ">= 3.1.0 and < 4.0.0" }
1616-gleam_stdlib = { version = ">= 0.44.0 and < 2.0.0" }
1717-gleeunit = { version = ">= 1.0.0 and < 2.0.0" }
1818-squirtle = { version = ">= 1.4.0 and < 2.0.0" }
1919-youid = { version = ">= 1.5.1 and < 2.0.0" }
···11-name = "server"
22-version = "1.0.0"
33-44-# Fill out these fields if you intend to generate HTML documentation or publish
55-# your project to the Hex package manager.
66-#
77-# description = ""
88-# licences = ["Apache-2.0"]
99-# repository = { type = "github", user = "", repo = "" }
1010-# links = [{ title = "Website", href = "" }]
1111-#
1212-# For a full reference of all the available options, you can have a look at
1313-# https://gleam.run/writing-gleam/gleam-toml/.
1414-1515-[dependencies]
1616-gleam_stdlib = ">= 0.44.0 and < 2.0.0"
1717-gleam_otp = ">= 1.2.0 and < 2.0.0"
1818-pog = ">= 4.1.0 and < 5.0.0"
1919-envoy = ">= 1.1.0 and < 2.0.0"
2020-gleam_erlang = ">= 1.3.0 and < 2.0.0"
2121-mist = ">= 5.0.4 and < 6.0.0"
2222-gleam_json = ">= 3.1.0 and < 4.0.0"
2323-gleam_http = ">= 4.3.0 and < 5.0.0"
2424-gleam_time = ">= 1.6.0 and < 2.0.0"
2525-palabres = ">= 1.0.3 and < 2.0.0"
2626-squirrel = ">= 4.6.0 and < 5.0.0"
2727-cartography_api = { path = "../api" }
2828-squirtle = ">= 1.4.0 and < 2.0.0"
2929-youid = ">= 1.5.1 and < 2.0.0"
3030-3131-[dev-dependencies]
3232-gleeunit = ">= 1.0.0 and < 2.0.0"