- PoW (Hashcash) authentication - X.509 CA for phone number certificates (+0 XXX YYY ZZZ) - QUIC transport (hysteria quic-go fork) with ACME TLS - Custom append-only DB engine (from NikoGram) - Call signaling (dial/ring/accept/reject/end) - E2EE media relay (X25519 + ChaCha20-Poly1305) - Brutal congestion control (from hysteria) - Media datagram relay (Opus/VP9/H264/H265) - Graceful shutdown
41 lines
1.3 KiB
Modula-2
41 lines
1.3 KiB
Modula-2
module github.com/niko/qcc
|
|
|
|
go 1.26
|
|
|
|
require (
|
|
github.com/apernet/quic-go v0.59.1-0.20260425001925-6c6cc9bcb716
|
|
github.com/caddyserver/certmagic v0.17.2
|
|
github.com/libdns/cloudflare v0.1.1
|
|
github.com/spf13/cobra v1.10.2
|
|
github.com/spf13/viper v1.21.0
|
|
go.uber.org/zap v1.24.0
|
|
golang.org/x/crypto v0.47.0
|
|
)
|
|
|
|
require (
|
|
github.com/fsnotify/fsnotify v1.9.0 // indirect
|
|
github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
|
|
github.com/sagikazarmark/locafero v0.12.0 // indirect
|
|
github.com/spf13/afero v1.15.0 // indirect
|
|
github.com/spf13/cast v1.10.0 // indirect
|
|
github.com/spf13/pflag v1.0.10 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/sys v0.41.0 // indirect
|
|
golang.org/x/text v0.34.0 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/klauspost/cpuid/v2 v2.1.1 // indirect
|
|
github.com/libdns/libdns v0.2.2 // indirect
|
|
github.com/mholt/acmez v1.0.4 // indirect
|
|
github.com/miekg/dns v1.1.50 // indirect
|
|
go.yaml.in/yaml/v3 v3.0.4 // indirect
|
|
golang.org/x/mod v0.32.0 // indirect
|
|
golang.org/x/net v0.49.0 // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
golang.org/x/tools v0.41.0 // indirect
|
|
)
|