Update dependencies

This commit is contained in:
Victor Fuentes 2023-04-02 19:18:44 -04:00
parent 8df50cf670
commit c95ebf1e51
No known key found for this signature in database
GPG Key ID: 0A88B68D6A9ACAE0
6 changed files with 573 additions and 510 deletions

1044
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,16 +1,16 @@
[package]
name = "nix-software-center"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
default-run = "nix-software-center"
[dependencies]
relm4 = { version = "0.5.0-rc.2", features = ["libadwaita", "macros"] }
relm4-components = { package = "relm4-components", version = "0.5.0-rc.2"}
relm4 = { version = "0.5", features = ["libadwaita", "macros"] }
relm4-components = { package = "relm4-components", version = "0.5"}
adw = { package = "libadwaita", version = "0.2", features = ["v1_2", "gtk_v4_6"] }
gtk = { package = "gtk4", version = "0.5", features = ["v4_6"] }
sourceview5 = { version = "0.5", features = ["v5_4"] }
tokio = { version = "1.25", features = ["rt", "macros", "time", "rt-multi-thread", "sync", "process"] }
tokio = { version = "1.26", features = ["rt", "macros", "time", "rt-multi-thread", "sync", "process"] }
tracker = "0.2"
serde_json = "1.0"
@ -20,13 +20,13 @@ serde_yaml = "0.9"
nix-editor = "0.3.0"
nix-data = { git = "https://github.com/snowflakelinux/nix-data" }
sqlx = { version = "0.6", features = [ "runtime-tokio-native-tls" , "sqlite" ] }
sqlx = { version = "0.6.0", features = [ "runtime-tokio-native-tls" , "sqlite" ] }
html2pango = "0.5"
log = "0.4"
pretty_env_logger = "0.4"
flate2 = "1.0"
quick-xml = { version = "0.27", features = ["serialize"] }
quick-xml = { version = "0.28", features = ["serialize"] }
rand = "0.8"
reqwest = { version = "0.11", features = ["blocking"] }
sha256 = "1.1"

View File

@ -13,14 +13,15 @@ let
in
pkgs.stdenv.mkDerivation rec {
pname = "nix-software-center";
version = "0.1.1";
version = "0.1.2";
src = [ ./. ];
cargoDeps = pkgs.rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-zNE50V8GEhksSm30qZ/cnqSRsKxNJ13s9zUpBDgXJdo=";
cargoDeps = pkgs.rustPlatform.importCargoLock {
lockFile = ./Cargo.lock;
outputHashes = {
"nix-data-0.0.2" = "sha256-yts2bkp9cn4SuYPYjgTNbOwTtpFxps3TU8zmS/ftN/Q=";
};
};
nativeBuildInputs = with pkgs; [

View File

@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1676721149,
"narHash": "sha256-mN2EpTGxxVNnFZLoLWRwh6f7UWhXy4qE+wO2CZyrXps=",
"lastModified": 1680213900,
"narHash": "sha256-cIDr5WZIj3EkKyCgj/6j3HBH4Jj1W296z7HTcWj1aMA=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "5f4e07deb7c44f27d498f8df9c5f34750acf52d2",
"rev": "e3652e0735fbec227f342712f180f4f21f0594f2",
"type": "github"
},
"original": {
@ -24,11 +24,11 @@
},
"utils": {
"locked": {
"lastModified": 1676283394,
"narHash": "sha256-XX2f9c3iySLCw54rJ/CZs+ZK6IQy7GXNY4nSOyu2QG4=",
"lastModified": 1678901627,
"narHash": "sha256-U02riOqrKKzwjsxc/400XnElV+UtPUQWpANPlyazjH0=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "3db36a8b464d0c4532ba1c7dda728f4576d6d073",
"rev": "93a2b84fc4b70d9e089d029deacc3583435c2ed6",
"type": "github"
},
"original": {

View File

@ -1,7 +1,7 @@
project(
'nix-software-center',
'rust',
version: '0.1.1',
version: '0.1.2',
meson_version: '>= 0.59',
license: 'GPL-3.0',
)

View File

@ -9,4 +9,4 @@ users = "0.11"
[[bin]]
name = "nsc-helper"
path = "src/main.rs"
path = "src/main.rs"