๐Ÿ‘ Possum submodule targeting the Tangled API api.tangled.org
tangled gleam atproto library
0

Configure Feed

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

possum/tangled: init project

author
kacaii.dev
date (Jul 6, 2026, 11:51 AM -0300) commit e26db5f1 change-id yrswunrn
+50
+6
.gitignore
··· 1 + *.beam 2 + *.ez 3 + /build 4 + erl_crash.dump 5 + 6 + .envrc
+16
gleam.toml
··· 1 + name = "possum_tangled" 2 + version = "1.0.0" 3 + 4 + description = "๐Ÿ‘ Query data from the tangled API " 5 + licences = ["Apache-2.0"] 6 + repository = { type = "github", user = "kacaii", repo = "possum_tangled" } 7 + links = [{ title = "", href = "" }] 8 + 9 + [dependencies] 10 + gleam_stdlib = ">= 1.0.0 and < 2.0.0" 11 + possum = ">= 1.0.9 and < 2.0.0" 12 + gleam_http = ">= 4.3.0 and < 5.0.0" 13 + gleam_json = ">= 3.1.0 and < 4.0.0" 14 + 15 + [dev_dependencies] 16 + gleeunit = ">= 1.0.0 and < 2.0.0"
+23
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_http", version = "4.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_http", source = "hex", outer_checksum = "82EA6A717C842456188C190AFB372665EA56CE13D8559BF3B1DD9E40F619EE0C" }, 11 + { name = "gleam_json", version = "3.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "44FDAA8847BE8FC48CA7A1C089706BD54BADCC4C45B237A992EDDF9F2CDB2836" }, 12 + { name = "gleam_regexp", version = "1.1.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_regexp", source = "hex", outer_checksum = "9C215C6CA84A5B35BB934A9B61A9A306EC743153BE2B0425A0D032E477B062A9" }, 13 + { name = "gleam_stdlib", version = "1.0.3", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "1F543AFBA5D33DA493E6087F4E4C4F20D899411343512686C98A8ABB2963CF22" }, 14 + { name = "gleeunit", version = "1.11.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "EC31ABA74256AEA531EDF8169931D775BBB384FED0A8A1BDC4DD9354E3E21826" }, 15 + { name = "possum", version = "1.0.9", build_tools = ["gleam"], requirements = ["gleam_http", "gleam_json", "gleam_regexp", "gleam_stdlib"], otp_app = "possum", source = "hex", outer_checksum = "B1A4747E71C728644ACE2722C3724E3CE6D4B5C6EBA76D8F55F10C5E2F9D794E" }, 16 + ] 17 + 18 + [requirements] 19 + gleam_http = { version = ">= 4.3.0 and < 5.0.0" } 20 + gleam_json = { version = ">= 3.1.0 and < 4.0.0" } 21 + gleam_stdlib = { version = ">= 1.0.0 and < 2.0.0" } 22 + gleeunit = { version = ">= 1.0.0 and < 2.0.0" } 23 + possum = { version = ">= 1.0.9 and < 2.0.0" }
+5
src/possum_tangled.gleam
··· 1 + import gleam/io 2 + 3 + pub fn main() -> Nil { 4 + io.println("Hello from possum_tangled!") 5 + }