diff --git a/doc/mod.just b/doc/mod.just index b849a47b..76bc224e 100644 --- a/doc/mod.just +++ b/doc/mod.just @@ -8,8 +8,3 @@ run: # Do link checks on docs check: nix run .#linkCheck - -# Run cargo docs server (live reloading) -[no-cd] -cargo: - cargo-doc-live diff --git a/flake.lock b/flake.lock index 13d029ba..98c092e7 100644 --- a/flake.lock +++ b/flake.lock @@ -15,21 +15,6 @@ "type": "github" } }, - "cargo-doc-live": { - "locked": { - "lastModified": 1724704668, - "narHash": "sha256-kJFYXlWUodg5WhJ0NuvrP0mCvOT/2AOIo8oGeYLXocs=", - "owner": "srid", - "repo": "cargo-doc-live", - "rev": "b09d5d258d2498829e03014931fc19aed499b86f", - "type": "github" - }, - "original": { - "owner": "srid", - "repo": "cargo-doc-live", - "type": "github" - } - }, "crane": { "inputs": { "nixpkgs": [ @@ -180,25 +165,9 @@ "type": "github" } }, - "process-compose-flake": { - "locked": { - "lastModified": 1718031437, - "narHash": "sha256-+RrlkAVZx0QhyeHAGFJnjST+/7Dc3zsDU3zAKXoDXaI=", - "owner": "Platonic-Systems", - "repo": "process-compose-flake", - "rev": "9344fac44edced4c686721686a6ad904d067c546", - "type": "github" - }, - "original": { - "owner": "Platonic-Systems", - "repo": "process-compose-flake", - "type": "github" - } - }, "root": { "inputs": { "cachix-push": "cachix-push", - "cargo-doc-live": "cargo-doc-live", "devour-flake": "devour-flake", "flake-parts": "flake-parts", "inspect": "inspect", @@ -207,7 +176,6 @@ "nix-systems-x86_64-darwin": "nix-systems-x86_64-darwin", "nix-systems-x86_64-linux": "nix-systems-x86_64-linux", "nixpkgs": "nixpkgs", - "process-compose-flake": "process-compose-flake", "rust-flake": "rust-flake", "systems": "systems", "treefmt-nix": "treefmt-nix" diff --git a/flake.nix b/flake.nix index 38db273c..5ba7cdfd 100644 --- a/flake.nix +++ b/flake.nix @@ -13,8 +13,6 @@ rust-flake.inputs.nixpkgs.follows = "nixpkgs"; treefmt-nix.url = "github:numtide/treefmt-nix"; treefmt-nix.inputs.nixpkgs.follows = "nixpkgs"; - process-compose-flake.url = "github:Platonic-Systems/process-compose-flake"; - cargo-doc-live.url = "github:srid/cargo-doc-live"; cachix-push.url = "github:juspay/cachix-push"; # omnix-ci diff --git a/nix/modules/flake-parts/devshell.nix b/nix/modules/flake-parts/devshell.nix index 16b39a8b..5150d6fe 100644 --- a/nix/modules/flake-parts/devshell.nix +++ b/nix/modules/flake-parts/devshell.nix @@ -31,7 +31,6 @@ in cargo-expand cargo-nextest cargo-audit - config.process-compose.cargo-doc-live.outputs.package # For when we start using Tauri cargo-tauri trunk diff --git a/nix/modules/flake-parts/rust.nix b/nix/modules/flake-parts/rust.nix index adeab4e7..e13123d1 100644 --- a/nix/modules/flake-parts/rust.nix +++ b/nix/modules/flake-parts/rust.nix @@ -5,12 +5,8 @@ { imports = [ inputs.rust-flake.flakeModules.default - inputs.process-compose-flake.flakeModule - inputs.cargo-doc-live.flakeModule ]; perSystem = { config, self', pkgs, lib, ... }: { - cargo-doc-live.crateName = "omnix-gui"; - rust-project = { # See /crates/*/crate.nix for the crate-specific Nix configuration crateNixFile = "crate.nix";