Installation
Until version 1.0, Gluegun is available as a Git dependency. Add it to
your gleam.toml:
[dependencies]gluegun = { git = "https://github.com/tylerbutler/gluegun.git", ref = "main" }For builds that you can repeat, replace main with a release tag or a commit SHA.
Compatibility
Section titled “Compatibility”- Gluegun runs on the Erlang target only.
- Gluegun is an interface to the Erlang Gun client. It does not support the JavaScript target.
- Gluegun supports Erlang/OTP
>= 27. - Gluegun supports Gleam
>= 1.7.0. - Gluegun supports Gun
>= 2.1.0 and < 3.0.0.
If your application supports more than one target, keep Gluegun code in Erlang-only modules. Set the package target when applicable:
target = "erlang"Package dependencies
Section titled “Package dependencies”Gluegun uses these packages:
gleam_stdlibgleam_erlanggleam_otpgun
The package controls these through its gleam.toml. Applications add only the Git dependency above.
See the API reference for the full public API.

