Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/wire-api/src/Wire/API/SystemSettings.hs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import Servant.OpenApi.Internal.Orphans ()
import Test.QuickCheck
import Wire.Arbitrary

-- | Subset of `Brig.Options.Settings` that is safe to be shown in public.
-- | Subset of `Wire.Options.Settings` that is safe to be shown in public.
--
-- Used to expose settings via the @/system/settings/unauthorized@ endpoint.
-- ALWAYS CHECK WITH SECURITY IF YOU WANT TO ADD SETTINGS HERE.
Expand Down
100 changes: 2 additions & 98 deletions libs/wire-subsystems/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
, async
, attoparsec
, base
, base16-bytestring
, base64-bytestring
, bilge
, bimap
Expand All @@ -27,7 +26,6 @@
, conduit
, constraints
, containers
, contravariant
, cookie
, cql
, crypton
Expand All @@ -39,6 +37,7 @@
, currency-codes
, data-default
, data-timeout
, dns
, email-validate
, errors
, exceptions
Expand All @@ -47,7 +46,6 @@
, file-embed
, filepath
, galley-types
, generics-sop
, hashable
, HaskellNet
, HaskellNet-SSL
Expand Down Expand Up @@ -75,12 +73,10 @@
, lens-aeson
, lib
, lrucaching
, mime
, mime-mail
, MonadRandom
, mtl
, network
, network-conduit-tls
, network-uri
, polysemy
, polysemy-conc
Expand All @@ -100,7 +96,6 @@
, resourcet
, retry
, saml2-web-sso
, schema-profunctor
, scientific
, servant
, servant-client-core
Expand All @@ -110,7 +105,6 @@
, sop-core
, ssl-util
, statistics
, stomp-queue
, string-conversions
, tagged
, template
Expand All @@ -135,7 +129,6 @@
, wai-utilities
, wire-api
, wire-api-federation
, wire-otel
, witherable
, zauth
}:
Expand All @@ -155,7 +148,6 @@ mkDerivation {
async
attoparsec
base
base16-bytestring
base64-bytestring
bilge
bimap
Expand All @@ -168,7 +160,6 @@ mkDerivation {
conduit
constraints
containers
contravariant
cookie
cql
crypton
Expand All @@ -179,14 +170,14 @@ mkDerivation {
currency-codes
data-default
data-timeout
dns
email-validate
errors
exceptions
extended
extra
file-embed
galley-types
generics-sop
hashable
HaskellNet
HaskellNet-SSL
Expand All @@ -198,7 +189,6 @@ mkDerivation {
hex
hscim
HsOpenSSL
hspec
html-entities
http-api-data
http-client
Expand All @@ -212,12 +202,10 @@ mkDerivation {
lens
lens-aeson
lrucaching
mime
mime-mail
MonadRandom
mtl
network
network-conduit-tls
network-uri
polysemy
polysemy-conc
Expand All @@ -235,7 +223,6 @@ mkDerivation {
resourcet
retry
saml2-web-sso
schema-profunctor
servant
servant-client-core
servant-server
Expand All @@ -244,7 +231,6 @@ mkDerivation {
sop-core
ssl-util
statistics
stomp-queue
tagged
template
text
Expand All @@ -268,138 +254,56 @@ mkDerivation {
wai-utilities
wire-api
wire-api-federation
wire-otel
witherable
zauth
];
testHaskellDepends = [
aeson
aeson-pretty
amazonka
amazonka-core
amazonka-dynamodb
amazonka-ses
amazonka-sqs
amqp
async
attoparsec
base
base16-bytestring
base64-bytestring
bilge
bloodhound
bytestring
bytestring-conversion
case-insensitive
cassandra-util
comonad
conduit
constraints
containers
contravariant
cookie
cql
crypton
crypton-asn1-encoding
crypton-asn1-types
crypton-pem
crypton-x509
crypton-x509-store
currency-codes
data-default
data-timeout
email-validate
errors
exceptions
extended
extra
file-embed
filepath
galley-types
generics-sop
hashable
HaskellNet
HaskellNet-SSL
hasql
hasql-migration
hasql-pool
hasql-th
hasql-transaction
hex
hscim
HsOpenSSL
hspec
html-entities
http-client
http-client-openssl
http-types
http2-manager
imports
iproute
iso639
kan-extensions
lens
lens-aeson
lrucaching
mime
mime-mail
MonadRandom
network
network-conduit-tls
network-uri
polysemy
polysemy-conc
polysemy-plugin
polysemy-time
polysemy-wire-zoo
profunctors
prometheus-client
proto-lens
QuickCheck
quickcheck-instances
ram
random
raw-strings-qq
resource-pool
resourcet
retry
saml2-web-sso
schema-profunctor
scientific
servant
servant-client-core
servant-server
singletons
sodium-crypto-sign
sop-core
ssl-util
statistics
stomp-queue
string-conversions
tagged
template
text
text-icu-translit
time
time-out
time-units
tinylog
token-bucket
transformers
types-common
types-common-journal
unliftio
unordered-containers
uri-bytestring
utf8-string
uuid
vector
wai
wai-utilities
wire-api
wire-api-federation
wire-otel
witherable
zauth
];
testToolDepends = [ hspec-discover ];
Expand Down
Loading