Atproto primitives for Gleam.
atproto
48

Configure Feed

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

:wrench: Scaffold empty project.

Hayleigh Thompson (Jul 15, 2026, 10:42 PM +0200) 52c75380

+32
+4
.gitignore
··· 1 + *.beam 2 + *.ez 3 + /build 4 + erl_crash.dump
+1
README.md
··· 1 + # at
+9
gleam.toml
··· 1 + name = "at" 2 + version = "1.0.0" 3 + 4 + [dependencies] 5 + gleam_stdlib = ">= 1.0.0 and < 2.0.0" 6 + gleam_time = ">= 1.8.0 and < 2.0.0" 7 + 8 + [dev_dependencies] 9 + gleeunit = ">= 1.0.0 and < 2.0.0"
+18
manifest.toml
··· 1 + # Do not manually edit this file, it is managed by Gleam. 2 + # 3 + # This file locks the dependency versions used, to make your build 4 + # deterministic and to prevent unexpected versions from being included 5 + # in your application. 6 + # 7 + # You should check this file into your source control repository. 8 + 9 + packages = [ 10 + { name = "gleam_stdlib", version = "1.0.3", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "1F543AFBA5D33DA493E6087F4E4C4F20D899411343512686C98A8ABB2963CF22" }, 11 + { name = "gleam_time", version = "1.8.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_time", source = "hex", outer_checksum = "533D8723774D61AD4998324F5DD1DABDCDBFABAFB9E87CB5D03C6955448FC97D" }, 12 + { name = "gleeunit", version = "1.11.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "EC31ABA74256AEA531EDF8169931D775BBB384FED0A8A1BDC4DD9354E3E21826" }, 13 + ] 14 + 15 + [requirements] 16 + gleam_stdlib = { version = ">= 1.0.0 and < 2.0.0" } 17 + gleam_time = { version = ">= 1.8.0 and < 2.0.0" } 18 + gleeunit = { version = ">= 1.0.0 and < 2.0.0" }