Fix failed build and update version

pull/40/head v0.3.12
Arijit Basu 3 years ago
parent b5986c59d6
commit b9e9601a71
No known key found for this signature in database
GPG Key ID: 7D7BF809E7378863

3
.gitignore vendored

@ -1 +1,4 @@
/target /target
/flamegraph.svg
/perf.data
/perf.data.old

2
Cargo.lock generated

@ -1362,7 +1362,7 @@ dependencies = [
[[package]] [[package]]
name = "xplr" name = "xplr"
version = "0.3.10" version = "0.3.12"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",

@ -1,6 +1,6 @@
[package] [package]
name = "xplr" name = "xplr"
version = "0.3.10" # Update app.rs and default.nix version = "0.3.12" # Update app.rs and default.nix
authors = ["Arijit Basu <sayanarijit@gmail.com>"] authors = ["Arijit Basu <sayanarijit@gmail.com>"]
edition = "2018" edition = "2018"
description = "A hackable, minimal, fast TUI file explorer, stealing ideas from nnn and fzf" description = "A hackable, minimal, fast TUI file explorer, stealing ideas from nnn and fzf"

@ -4,9 +4,9 @@ with import <nixpkgs> {};
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
name = "xplr"; name = "xplr";
version = "0.3.10"; version = "0.3.12";
src = fetchTarball src = fetchTarball
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.10.tar.gz"); ("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.12.tar.gz");
buildInputs = [ cargo ]; buildInputs = [ cargo ];
checkPhase = ""; checkPhase = "";
cargoSha256 = "0000000000000000000000000000000000000000000000000000"; cargoSha256 = "0000000000000000000000000000000000000000000000000000";

@ -13,7 +13,7 @@ use std::fs;
use std::io; use std::io;
use std::path::PathBuf; use std::path::PathBuf;
pub const VERSION: &str = "v0.3.10"; // Update Cargo.toml and default.nix pub const VERSION: &str = "v0.3.12"; // Update Cargo.toml and default.nix
pub const TEMPLATE_TABLE_ROW: &str = "TEMPLATE_TABLE_ROW"; pub const TEMPLATE_TABLE_ROW: &str = "TEMPLATE_TABLE_ROW";
pub const UNSUPPORTED_STR: &str = "???"; pub const UNSUPPORTED_STR: &str = "???";
pub const UPGRADE_GUIDE_LINK: &str = "https://github.com/sayanarijit/xplr/wiki/Upgrade-Guide"; pub const UPGRADE_GUIDE_LINK: &str = "https://github.com/sayanarijit/xplr/wiki/Upgrade-Guide";

Loading…
Cancel
Save