Files
actors/actors.cabal
T
dvdrw 711d26d9f7 feat: federated learning demo on the actor framework
- supervisor: ignore stale death messages (OneForAll restart storm),
  drop normally-exited children instead of respawning, add a
  restart-rate limit
- register actors before their thread starts so UUID dispatch and
  getSelf cannot race the spawn
- killActor now kills the thread so links see Killed
- fulfill connection promises with the pool winner on simultaneous
  connects
- clamp the PaySim test split on small datasets and split shared
  transaction types across trainers in non-IID partitioning
2026-07-13 11:33:54 +02:00

126 lines
3.5 KiB
Plaintext

cabal-version: 3.0
-- The cabal-version field refers to the version of the .cabal specification,
-- and can be different from the cabal-install (the tool) version and the
-- Cabal (the library) version you are using. As such, the Cabal (the library)
-- version used must be equal or greater than the version stated in this field.
-- Starting from the specification version 2.2, the cabal-version field must be
-- the first thing in the cabal file.
-- Initial package description 'actors' generated by
-- 'cabal init'. For further documentation, see:
-- http://haskell.org/cabal/users-guide/
--
-- The name of the package.
name: actors
-- The package version.
-- See the Haskell package versioning policy (PVP) for standards
-- guiding when and how versions should be incremented.
-- https://pvp.haskell.org
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
-- A short (one-line) description of the package.
synopsis: An actor framework for Haskell
-- A longer description of the package.
-- description:
-- URL for the project homepage or repository.
homepage: https://git.dvdrw.dev/dvdrw/actors
-- The license under which the package is released.
license: AGPL-3.0-only
-- The file containing the license text.
license-file: LICENSE
-- The package author(s).
author: dvdrw
-- An email address to which users can send suggestions, bug reports, and patches.
maintainer: admin@dvdrw.dev
-- A copyright notice.
-- copyright:
category: Distribution
build-type: Simple
-- Extra doc files to be distributed with the package, such as a CHANGELOG or a README.
extra-doc-files: CHANGELOG.md
-- Extra source files to be distributed with the package, such as examples, or a tutorial module.
-- extra-source-files:
common warnings
ghc-options: -Wall
library
-- Import common warning flags.
import: warnings
-- Modules exported by the library.
exposed-modules:
Control.Actor
Control.Actor.Types
Control.Actor.Transport
Control.Actor.Runtime
Control.Actor.Core
Control.Actor.Supervision
Control.Actor.Network
Control.Actor.Registry
FL.Types
FL.CRDT
FL.NN
FL.Retry
FL.Data.PaySim
FL.Actors.Logger
FL.Actors.Evaluator
FL.Actors.Trainer
FL.Actors.Aggregator
FL.Actors.Coordinator
FL.Actors.PeerCoordinator
FL.Provider
FL.P2P
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
-- Other library packages from which modules are imported.
build-depends:
base ^>=4.18.3.0,
stm,
uuid,
bytestring ^>=0.12.0.0,
containers ^>=0.8,
mtl ^>=2.3.0,
binary ^>=0.8.9,
network ^>=3.2,
hmatrix,
cassava,
vector,
random,
text,
time
-- Directories containing source files.
hs-source-dirs: src
-- Base language which the package is written in.
default-language: GHC2021
executable fl-actors
import: warnings
main-is: Main.hs
hs-source-dirs: app
build-depends:
base ^>=4.18.3.0,
actors,
optparse-applicative
default-language: GHC2021