From 2daa94420395932c0233f8f9f4d8b3e279e847dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Fri, 9 Apr 2021 19:14:56 +0100 Subject: [PATCH] Rename the package to tlaternet-webserver This is less confusing than naming it the same as the server domain name. --- Cargo.toml | 2 +- flake.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 79e1dc1..a700d8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "tlaternet" +name = "tlaternet-webserver" version = "0.1.0" authors = ["Tristan Daniƫl Maat "] edition = "2018" diff --git a/flake.nix b/flake.nix index 5ed0bdb..09ae8d8 100644 --- a/flake.nix +++ b/flake.nix @@ -20,11 +20,11 @@ outputs = { self, nixpkgs, flake-utils, rust-overlay, naersk }@inputs: flake-utils.lib.simpleFlake { inherit self nixpkgs; - name = "tlaternet"; + name = "tlaternet-webserver"; preOverlays = [ rust-overlay.overlay ]; overlay = final: prev: { - tlaternet = let + tlaternet-webserver = let # The rust toolchain to use toolchain = prev.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;