Atproto primitives for Gleam.
atproto
1

Configure Feed

Select the types of activity you want to include in your feed.

➕ Add gleam_http, gleam_json, and munch as dependencies.

+7 -1
+3 -1
gleam.toml
··· 2 2 version = "1.0.0" 3 3 4 4 [dependencies] 5 + gleam_http = ">= 4.3.0 and < 5.0.0" 6 + gleam_json = ">= 3.1.0 and < 4.0.0" 5 7 gleam_stdlib = ">= 1.0.0 and < 2.0.0" 6 8 gleam_time = ">= 1.8.0 and < 2.0.0" 7 - gleam_json = ">= 3.1.0 and < 4.0.0" 9 + munch = ">= 1.0.1 and < 2.0.0" 8 10 ywt_core = ">= 2.0.0 and < 3.0.0" 9 11 10 12 [dev_dependencies]
+4
manifest.toml
··· 8 8 9 9 packages = [ 10 10 { name = "bigi", version = "4.1.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "bigi", source = "hex", outer_checksum = "44FEDF1DF5C1F426A80B67C32B976D0828D66524E11BDC2DD22B78D37C883BA7" }, 11 + { name = "gleam_http", version = "4.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_http", source = "hex", outer_checksum = "82EA6A717C842456188C190AFB372665EA56CE13D8559BF3B1DD9E40F619EE0C" }, 11 12 { name = "gleam_json", version = "3.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "44FDAA8847BE8FC48CA7A1C089706BD54BADCC4C45B237A992EDDF9F2CDB2836" }, 12 13 { name = "gleam_stdlib", version = "1.0.3", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "1F543AFBA5D33DA493E6087F4E4C4F20D899411343512686C98A8ABB2963CF22" }, 13 14 { name = "gleam_time", version = "1.8.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_time", source = "hex", outer_checksum = "533D8723774D61AD4998324F5DD1DABDCDBFABAFB9E87CB5D03C6955448FC97D" }, 14 15 { name = "gleeunit", version = "1.11.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "EC31ABA74256AEA531EDF8169931D775BBB384FED0A8A1BDC4DD9354E3E21826" }, 16 + { name = "munch", version = "1.0.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "munch", source = "hex", outer_checksum = "207D3D74F58F060989275894939469B39E7D320607AF554F66CD401CA37D3A1F" }, 15 17 { name = "ywt_core", version = "2.0.0", build_tools = ["gleam"], requirements = ["bigi", "gleam_json", "gleam_stdlib", "gleam_time"], otp_app = "ywt_core", source = "hex", outer_checksum = "C9A1E930D64DEAE7B558A015D01C0AE0198147D5B4B5C00A36008EDB2EB11AA2" }, 16 18 ] 17 19 18 20 [requirements] 21 + gleam_http = { version = ">= 4.3.0 and < 5.0.0" } 19 22 gleam_json = { version = ">= 3.1.0 and < 4.0.0" } 20 23 gleam_stdlib = { version = ">= 1.0.0 and < 2.0.0" } 21 24 gleam_time = { version = ">= 1.8.0 and < 2.0.0" } 22 25 gleeunit = { version = ">= 1.0.0 and < 2.0.0" } 26 + munch = { version = ">= 1.0.1 and < 2.0.0" } 23 27 ywt_core = { version = ">= 2.0.0 and < 3.0.0" }