mirror of
https://github.com/renorris/openfsd
synced 2026-03-22 23:05:36 +08:00
Changes:
- Implement bootstrapping library for managing several concurrent internal services
- Refactor concurrency model for connections/logical clients and their associated I/O
- Refactor server context singleton
- Refactor error handling
- Most errors are now gracefully sent to the FSD client directly encoded as an $ER packet,
enhancing visibility and debugging
- Most errors are now rightfully treated as non-fatal
- Refactor package/dependency graph
- Refactor calling conventions/interfaces for many packages
- Refactor database package
- Refactor post office
Features:
- Add VATSIM-esque HTTP/JSON "data feed"
- Add ephemeral in-memory database option
- Add user management REST API
- Add improved web interface
- Add MySQL support (drop SQLite support)
56 lines
2.2 KiB
Modula-2
56 lines
2.2 KiB
Modula-2
module github.com/renorris/openfsd
|
|
|
|
go 1.23.2
|
|
|
|
require (
|
|
github.com/dolthub/go-mysql-server v0.18.1
|
|
github.com/fatih/color v1.17.0
|
|
github.com/go-playground/validator/v10 v10.22.1
|
|
github.com/go-sql-driver/mysql v1.8.1
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
|
github.com/mmcloughlin/geohash v0.10.0
|
|
github.com/sethvargo/go-envconfig v1.1.0
|
|
github.com/stretchr/testify v1.9.0
|
|
golang.org/x/crypto v0.27.0
|
|
)
|
|
|
|
require (
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dolthub/flatbuffers/v23 v23.3.3-dh.2 // indirect
|
|
github.com/dolthub/go-icu-regex v0.0.0-20240916130659-0118adc6b662 // indirect
|
|
github.com/dolthub/jsonpath v0.0.2-0.20240227200619-19675ab05c71 // indirect
|
|
github.com/dolthub/vitess v0.0.0-20240404214255-c5a87fc7b325 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.4 // indirect
|
|
github.com/go-kit/kit v0.10.0 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/lestrrat-go/strftime v1.0.4 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/shopspring/decimal v1.3.1 // indirect
|
|
github.com/sirupsen/logrus v1.8.1 // indirect
|
|
github.com/tetratelabs/wazero v1.1.0 // indirect
|
|
go.opentelemetry.io/otel v1.7.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.7.0 // indirect
|
|
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
|
|
golang.org/x/mod v0.21.0 // indirect
|
|
golang.org/x/net v0.29.0 // indirect
|
|
golang.org/x/sync v0.8.0 // indirect
|
|
golang.org/x/sys v0.25.0 // indirect
|
|
golang.org/x/text v0.18.0 // indirect
|
|
golang.org/x/tools v0.25.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
|
|
google.golang.org/grpc v1.53.0 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
gopkg.in/src-d/go-errors.v1 v1.0.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|