alpha
Login
or
Join now
kacaii.dev
/
possum-tangled
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
๐ Possum submodule targeting the Tangled API
api.tangled.org
tangled
gleam
atproto
library
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
possum/tangled: init project
author
kacaii.dev
date
2 weeks ago
(Jul 6, 2026, 11:51 AM -0300)
commit
e26db5f1
e26db5f16096e748171ec4cb9f4c0731e663d680
change-id
yrswunrn
yrswunrntpotzpryxxummrvyktnsvltu
+50
4 changed files
Expand all
Collapse all
Unified
Split
.gitignore
gleam.toml
manifest.toml
src
possum_tangled.gleam
+6
.gitignore
View file
Reviewed
···
1
1
+
*.beam
2
2
+
*.ez
3
3
+
/build
4
4
+
erl_crash.dump
5
5
+
6
6
+
.envrc
+16
gleam.toml
View file
Reviewed
···
1
1
+
name = "possum_tangled"
2
2
+
version = "1.0.0"
3
3
+
4
4
+
description = "๐ Query data from the tangled API "
5
5
+
licences = ["Apache-2.0"]
6
6
+
repository = { type = "github", user = "kacaii", repo = "possum_tangled" }
7
7
+
links = [{ title = "", href = "" }]
8
8
+
9
9
+
[dependencies]
10
10
+
gleam_stdlib = ">= 1.0.0 and < 2.0.0"
11
11
+
possum = ">= 1.0.9 and < 2.0.0"
12
12
+
gleam_http = ">= 4.3.0 and < 5.0.0"
13
13
+
gleam_json = ">= 3.1.0 and < 4.0.0"
14
14
+
15
15
+
[dev_dependencies]
16
16
+
gleeunit = ">= 1.0.0 and < 2.0.0"
+23
manifest.toml
View file
Reviewed
···
1
1
+
# Do not manually edit this file, it is managed by Gleam.
2
2
+
#
3
3
+
# This file locks the dependency versions used, to make your build
4
4
+
# deterministic and to prevent unexpected versions from being included
5
5
+
# in your application.
6
6
+
#
7
7
+
# You should check this file into your source control repository.
8
8
+
9
9
+
packages = [
10
10
+
{ name = "gleam_http", version = "4.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_http", source = "hex", outer_checksum = "82EA6A717C842456188C190AFB372665EA56CE13D8559BF3B1DD9E40F619EE0C" },
11
11
+
{ name = "gleam_json", version = "3.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "44FDAA8847BE8FC48CA7A1C089706BD54BADCC4C45B237A992EDDF9F2CDB2836" },
12
12
+
{ name = "gleam_regexp", version = "1.1.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_regexp", source = "hex", outer_checksum = "9C215C6CA84A5B35BB934A9B61A9A306EC743153BE2B0425A0D032E477B062A9" },
13
13
+
{ name = "gleam_stdlib", version = "1.0.3", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "1F543AFBA5D33DA493E6087F4E4C4F20D899411343512686C98A8ABB2963CF22" },
14
14
+
{ name = "gleeunit", version = "1.11.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "EC31ABA74256AEA531EDF8169931D775BBB384FED0A8A1BDC4DD9354E3E21826" },
15
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
16
+
]
17
17
+
18
18
+
[requirements]
19
19
+
gleam_http = { version = ">= 4.3.0 and < 5.0.0" }
20
20
+
gleam_json = { version = ">= 3.1.0 and < 4.0.0" }
21
21
+
gleam_stdlib = { version = ">= 1.0.0 and < 2.0.0" }
22
22
+
gleeunit = { version = ">= 1.0.0 and < 2.0.0" }
23
23
+
possum = { version = ">= 1.0.9 and < 2.0.0" }
+5
src/possum_tangled.gleam
View file
Reviewed
···
1
1
+
import gleam/io
2
2
+
3
3
+
pub fn main() -> Nil {
4
4
+
io.println("Hello from possum_tangled!")
5
5
+
}