Auto-indexing service and GraphQL API for AT Protocol Records
0
fork

Configure Feed

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

chore: remove unused dependencies

Remove wisp_flash, thoas, erl_cbor, and base32 - none were used
directly. erl_cbor and base32 come transitively via atproto_car.

-8
-4
server/gleam.toml
··· 18 18 gleam_stdlib = ">= 0.60.0 and < 1.0.0" 19 19 mist = ">= 5.0.3 and < 6.0.0" 20 20 wisp = ">= 2.1.0 and < 3.0.0" 21 - wisp_flash = ">= 2.0.0 and < 3.0.0" 22 21 gleam_erlang = ">= 1.0.0 and < 2.0.0" 23 22 gleam_otp = ">= 1.2.0 and < 2.0.0" 24 23 gleam_http = ">= 4.0.0 and < 5.0.0" ··· 32 31 jose = ">= 1.11.10 and < 2.0.0" 33 32 envoy = ">= 1.0.2 and < 2.0.0" 34 33 dotenv_gleam = ">= 2.0.1 and < 3.0.0" 35 - thoas = ">= 1.0.0 and < 2.0.0" 36 34 goose = ">= 2.0.0 and < 3.0.0" 37 35 gleam_crypto = ">= 1.5.1 and < 2.0.0" 38 36 logging = ">= 1.3.0 and < 2.0.0" 39 37 group_registry = ">= 1.0.0 and < 2.0.0" 40 38 swell = ">= 2.0.0 and < 3.0.0" 41 39 honk = ">= 1.0.0 and < 2.0.0" 42 - erl_cbor = ">= 2.0.0 and < 3.0.0" 43 - base32 = ">= 1.0.0 and < 2.0.0" 44 40 45 41 [dev-dependencies] 46 42 gleeunit = ">= 1.0.0 and < 2.0.0"
-4
server/manifest.toml
··· 49 49 { name = "ssl_verify_fun", version = "1.1.7", build_tools = ["mix", "rebar3", "make"], requirements = [], otp_app = "ssl_verify_fun", source = "hex", outer_checksum = "FE4C190E8F37401D30167C8C405EDA19469F34577987C76DDE613E838BBC67F8" }, 50 50 { name = "swell", version = "2.1.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "swell", source = "hex", outer_checksum = "64CFC91A6851487D07E85B02D8405F5EA06EAA74C6742915F5A78531D6237F16" }, 51 51 { name = "telemetry", version = "1.3.0", build_tools = ["rebar3"], requirements = [], otp_app = "telemetry", source = "hex", outer_checksum = "7015FC8919DBE63764F4B4B87A95B7C0996BD539E0D499BE6EC9D7F3875B79E6" }, 52 - { name = "thoas", version = "1.2.1", build_tools = ["rebar3"], requirements = [], otp_app = "thoas", source = "hex", outer_checksum = "E38697EDFFD6E91BD12CEA41B155115282630075C2A727E7A6B2947F5408B86A" }, 53 52 { name = "unicode_util_compat", version = "0.7.1", build_tools = ["rebar3"], requirements = [], otp_app = "unicode_util_compat", source = "hex", outer_checksum = "B3A917854CE3AE233619744AD1E0102E05673136776FB2FA76234F3E03B23642" }, 54 53 { name = "wisp", version = "2.1.0", build_tools = ["gleam"], requirements = ["directories", "exception", "filepath", "gleam_crypto", "gleam_erlang", "gleam_http", "gleam_json", "gleam_stdlib", "houdini", "logging", "marceau", "mist", "simplifile"], otp_app = "wisp", source = "hex", outer_checksum = "362BDDD11BF48EB38CDE51A73BC7D1B89581B395CA998E3F23F11EC026151C54" }, 55 - { name = "wisp_flash", version = "2.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib", "wisp"], otp_app = "wisp_flash", source = "hex", outer_checksum = "C67A295E42030EEB8A7D31CD64971790EC010FA2644CBDC0835BF88D97DE998D" }, 56 54 ] 57 55 58 56 [requirements] ··· 82 80 simplifile = { version = ">= 2.0.0 and < 3.0.0" } 83 81 sqlight = { version = ">= 1.0.0 and < 2.0.0" } 84 82 swell = { version = ">= 2.0.0 and < 3.0.0" } 85 - thoas = { version = ">= 1.0.0 and < 2.0.0" } 86 83 wisp = { version = ">= 2.1.0 and < 3.0.0" } 87 - wisp_flash = { version = ">= 2.0.0 and < 3.0.0" }