From 3ab6c7b3375d111c584d1334dcb8101bc37e5f93 Mon Sep 17 00:00:00 2001 From: sxyazi Date: Sun, 22 Oct 2023 13:12:35 +0800 Subject: [PATCH] .. [no ci] --- flake.nix | 2 +- yazi-adaptor/Cargo.toml | 4 ++-- yazi-config/Cargo.toml | 2 +- yazi-core/Cargo.toml | 6 +++--- yazi-fm/Cargo.toml | 10 +++++----- yazi-plugin/Cargo.toml | 6 +++--- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/flake.nix b/flake.nix index a5af3907..dec97618 100644 --- a/flake.nix +++ b/flake.nix @@ -27,7 +27,7 @@ let pkgs = import nixpkgs { inherit system overlays; }; versionSuffix = "pre${builtins.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101")}_${self.shortRev or "dirty"}"; - version = (builtins.fromTOML (builtins.readFile ./app/Cargo.toml)).package.version + versionSuffix; + version = (builtins.fromTOML (builtins.readFile ./yazi-fm/Cargo.toml)).package.version + versionSuffix; yazi = pkgs.callPackage ./nix/yazi.nix { inherit version; }; in { diff --git a/yazi-adaptor/Cargo.toml b/yazi-adaptor/Cargo.toml index ce76f8d0..5229c192 100644 --- a/yazi-adaptor/Cargo.toml +++ b/yazi-adaptor/Cargo.toml @@ -4,8 +4,8 @@ version = "0.1.5" edition = "2021" [dependencies] -yazi-config = { path = "../yazi-config" } -yazi-shared = { path = "../yazi-shared" } +yazi-config = { path = "../yazi-config", version = "0.1.5" } +yazi-shared = { path = "../yazi-shared", version = "0.1.5" } # External dependencies anyhow = "^1" diff --git a/yazi-config/Cargo.toml b/yazi-config/Cargo.toml index af8c6805..64ab62bd 100644 --- a/yazi-config/Cargo.toml +++ b/yazi-config/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.5" edition = "2021" [dependencies] -yazi-shared = { path = "../yazi-shared" } +yazi-shared = { path = "../yazi-shared", version = "0.1.5" } # External dependencies anyhow = "^1" diff --git a/yazi-core/Cargo.toml b/yazi-core/Cargo.toml index 2f65f520..2d354a64 100644 --- a/yazi-core/Cargo.toml +++ b/yazi-core/Cargo.toml @@ -4,9 +4,9 @@ version = "0.1.5" edition = "2021" [dependencies] -yazi-adaptor = { path = "../yazi-adaptor" } -yazi-config = { path = "../yazi-config" } -yazi-shared = { path = "../yazi-shared" } +yazi-adaptor = { path = "../yazi-adaptor", version = "0.1.5" } +yazi-config = { path = "../yazi-config", version = "0.1.5" } +yazi-shared = { path = "../yazi-shared", version = "0.1.5" } # External dependencies anyhow = "^1" diff --git a/yazi-fm/Cargo.toml b/yazi-fm/Cargo.toml index a80dbdd1..4754f8d8 100644 --- a/yazi-fm/Cargo.toml +++ b/yazi-fm/Cargo.toml @@ -4,11 +4,11 @@ version = "0.1.5" edition = "2021" [dependencies] -yazi-adaptor = { path = "../yazi-adaptor" } -yazi-config = { path = "../yazi-config" } -yazi-core = { path = "../yazi-core" } -yazi-plugin = { path = "../yazi-plugin" } -yazi-shared = { path = "../yazi-shared" } +yazi-adaptor = { path = "../yazi-adaptor", version = "0.1.5" } +yazi-config = { path = "../yazi-config", version = "0.1.5" } +yazi-core = { path = "../yazi-core", version = "0.1.5" } +yazi-plugin = { path = "../yazi-plugin", version = "0.1.5" } +yazi-shared = { path = "../yazi-shared", version = "0.1.5" } # External dependencies ansi-to-tui = "^3" diff --git a/yazi-plugin/Cargo.toml b/yazi-plugin/Cargo.toml index 94445835..314f2f74 100644 --- a/yazi-plugin/Cargo.toml +++ b/yazi-plugin/Cargo.toml @@ -4,9 +4,9 @@ version = "0.1.5" edition = "2021" [dependencies] -yazi-config = { path = "../yazi-config" } -yazi-core = { path = "../yazi-core" } -yazi-shared = { path = "../yazi-shared" } +yazi-config = { path = "../yazi-config", version = "0.1.5" } +yazi-core = { path = "../yazi-core", version = "0.1.5" } +yazi-shared = { path = "../yazi-shared", version = "0.1.5" } # External dependencies ansi-to-tui = "^3"