Migrate three pure-function modules from Elixir to Gleam: - polling_offset: deterministic hash-based polling offset (pure Gleam, no FFI) - changelog_parser: text parsing logic in Gleam, thin Elixir wrapper for File I/O - user_agent_parser: regex-based UA parsing in Gleam with Erlang FFI for atom-keyed map conversion Add gleam_regexp dependency for regex support in Gleam modules. Update all call sites and tests to use Gleam module atoms. Reviewed-on: graham/towerops-web#103
10 lines
201 B
TOML
10 lines
201 B
TOML
name = "towerops"
|
|
version = "0.1.0"
|
|
target = "erlang"
|
|
|
|
[dependencies]
|
|
gleam_stdlib = ">= 0.34.0 and < 2.0.0"
|
|
gleam_regexp = ">= 1.0.0 and < 2.0.0"
|
|
|
|
[dev-dependencies]
|
|
gleeunit = ">= 1.0.0 and < 2.0.0"
|