Skip to content

Commit 4a2eaa2

Browse files
Datronshivaraj-bh
andauthored
chore: Flake update (#775)
* chore(nix): remove redundant apple_sdk it is implicit in stdenv now * chore(nix): Update flake-parts * chore(nix): Update haskell-flake * chore(nix): rust-flake nixpkgs follows * chore(nix): Update pre-commit-hooks-nix; follow nixpkgs * chore(nix): flake-parts' nixpkgs-lib follow nixpkgs; nixpkgs update * chore(nix): ghc964 no longer exists * chore(clients/haskell): unmarkBroken monad-logger-aeson * chore: Add package description in Cargo.toml rust-flake now requires package description * chore: update ci checks yaml --------- Co-authored-by: shivaraj-bh <[email protected]>
1 parent fb5a51c commit 4a2eaa2

File tree

20 files changed

+68
-111
lines changed

20 files changed

+68
-111
lines changed

.github/workflows/ci_check_pr.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ jobs:
130130

131131
- name: Install postgres libs
132132
run: |
133+
sudo apt update
133134
sudo apt-get -y install postgresql libpq-dev
134135
135136
- name: Install Bun
@@ -262,6 +263,7 @@ jobs:
262263

263264
- name: Install postgres libs
264265
run: |
266+
sudo apt update
265267
sudo apt-get -y install postgresql libpq-dev
266268
267269
- name: Install Bun

clients/haskell/default.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
self',
88
...
99
}:
10-
let hpkgs = pkgs.haskell.packages.ghc964;
10+
let hpkgs = pkgs.haskell.packages.ghc96;
1111
in {
1212
haskellProjects.default = {
1313
imports = [
@@ -24,6 +24,7 @@
2424
cac_client.custom = _: self'.packages.cac_client;
2525
experimentation_client.custom = _: self'.packages.experimentation_client;
2626
superposition_core.custom = _: self'.packages.superposition_core;
27+
monad-logger-aeson.broken = false;
2728
};
2829
};
2930
devShells.haskell = pkgs.mkShell {

crates/cac_client/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "cac_client"
3+
description = "CAC Client provides interfaces for applications to interact with the context-aware-config module in superposition. Note: this is deprecated, please use the provider"
34
version.workspace = true
45
edition = "2021"
56
build = "build.rs"

crates/cac_toml/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "cac_toml"
3+
description = "cac_toml is a DSL built to help use context-aware-config concepts at the file level "
34
version.workspace = true
45
edition = "2021"
56

crates/context_aware_config/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "context_aware_config"
3+
description = "context-aware-config introduces a new way to think about application configuration by defines dimensions, default configs and overrides."
34
version.workspace = true
45
edition = "2021"
56

crates/experimentation_client/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "experimentation_client"
3+
description = "experimentation Client provides interfaces for applications to interact with the experimentation module in superposition. Note: this is deprecated, please use the provider"
34
version.workspace = true
45
edition = "2021"
56

crates/experimentation_platform/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "experimentation_platform"
3+
description = "experimentation-platform leverages the power of context-aware-config to allow for N variant experiments and A/B releases"
34
version.workspace = true
45
edition = "2021"
56

crates/frontend/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "frontend"
3+
description = "the UI interface that is provided to interact, configure and manage superposition, organisations and application workspaces"
34
version.workspace = true
45
edition = "2021"
56
include = ["src/**/*", "src-js/**/*"]

crates/service_utils/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "service_utils"
3+
description = "utility functions used across crates"
34
version.workspace = true
45
edition = "2021"
56

crates/superposition/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "superposition"
3+
description = "The main server runtime. Also home to modules that don't fall into other crates"
34
version.workspace = true
45
edition = "2021"
56

0 commit comments

Comments
 (0)