Unverified Commit 49655d37 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #293945 from Grafcube/update-cargo-leptos-0.2.15

cargo-leptos: 0.2.5 -> 0.2.15
parents ebf83ce6 d580176d
Loading
Loading
Loading
Loading
+0 −3480

File deleted.

Preview size limit exceeded, changes collapsed.

+5 −7
Original line number Diff line number Diff line
@@ -15,18 +15,16 @@ let
in
rustPlatform.buildRustPackage rec {
  pname = "cargo-leptos";
  version = "0.2.5";
  version = "0.2.15";

  src = fetchFromGitHub {
    owner = "leptos-rs";
    repo = pname;
    rev = version;
    hash = "sha256-veRhTruM+Nw2rerzXC/kpi2Jr8mMMBLqOM2YBCpFePU=";
    rev = "v${version}";
    hash = "sha256-ojLAdudgset/5ynOoue8oJ5L3Z43GHDQBf0xnpkKDOg=";
  };

  cargoLock = {
    lockFile = ./Cargo.lock;
  };
  cargoHash = "sha256-OjA1M/PcMxQ7MvBf6hIn+TSCnFvIwQ+08xPcY+jWs9s=";

  buildInputs = optionals isDarwin [
    SystemConfiguration
@@ -41,7 +39,7 @@ rustPlatform.buildRustPackage rec {
  meta = with lib; {
    description = "A build tool for the Leptos web framework";
    homepage = "https://github.com/leptos-rs/cargo-leptos";
    changelog = "https://github.com/leptos-rs/cargo-leptos/releases/tag/${version}";
    changelog = "https://github.com/leptos-rs/cargo-leptos/releases/tag/v${version}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ benwis ];
  };