golang-github-arceliar-phony 0.0~git20210209.dde1a8d-1 source package in Ubuntu

Changelog

golang-github-arceliar-phony (0.0~git20210209.dde1a8d-1) unstable; urgency=medium

  * Initial release (Closes: #1003988)

 -- John Goerzen <email address hidden>  Wed, 19 Jan 2022 00:35:32 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-arceliar-phony_0.0~git20210209.dde1a8d-1.dsc 2.3 KiB 89563235039616a63656521c77e8b9b0f12a4c4daea46f6f67eb57e90010c9d9
golang-github-arceliar-phony_0.0~git20210209.dde1a8d.orig.tar.xz 10.2 KiB 4ecae378811aebf942fb77fe691f5325075d67dcbab17f16adb0e13f785de8f9
golang-github-arceliar-phony_0.0~git20210209.dde1a8d-1.debian.tar.xz 2.0 KiB c5046ab5c9ca875a715ba6fdfc0af7a54c38ea034f7184c54dcc0387b805b6e6

No changes file available.

Binary packages built by this source

golang-github-arceliar-phony-dev: Ponylang-inspired actor model library for Go (library)

 Phony is a Pony-inspired proof-of-concept
 implementation of shared-memory actor-model concurrency in the Go
 programming language. Actors automatically manage goroutines and use
 asynchronous causal messaging (with backpressure) for communcation. This
 makes it easy to write programs that are free from deadlocks, goroutine
 leaks, and many of the for loops over select statements that show up in
 boilerplate code. The down side is that the code needs to be written in
 an asynchronous style, which is not idiomatic to Go, so it can take some
 getting used to.