Merge pull request #331817 from bbigras/veilid

veilid: 0.3.3 -> 0.3.4
This commit is contained in:
Bruno Bigras 2024-08-04 15:57:47 -04:00 committed by GitHub
commit ad14f86873
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 556 additions and 238 deletions

File diff suppressed because it is too large Load Diff

View File

@ -6,17 +6,18 @@
, rustPlatform
, protobuf
, capnproto
, cmake
}:
rustPlatform.buildRustPackage rec {
pname = "veilid";
version = "0.3.3";
version = "0.3.4";
src = fetchFromGitLab {
owner = "veilid";
repo = pname;
rev = "v${version}";
hash = "sha256-Gm65fvLImbsAU8kMYQv5VFEjkBQnhBFDqwheddRbtU8=";
hash = "sha256-nEJxiox2aoQBV83vlpiBB4In59+lfHF6/a8HqDYcFT4=";
};
cargoLock = {
@ -31,6 +32,7 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [
capnproto
cmake
protobuf
];
@ -40,6 +42,8 @@ rustPlatform.buildRustPackage rec {
"--workspace"
];
RUSTFLAGS = "--cfg tokio_unstable";
doCheck = false;
outputs = [ "out" "lib" "dev" ];