mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 23:23:57 +02:00

* set `publish = false` for multiple Cargo.toml files * cargo update * fix taplo.toml * sort `workspace.dependencies` * add `cargo-release` to nix shell Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
24 lines
310 B
Nix
24 lines
310 B
Nix
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (c) 2024 Matter Labs
|
|
{ lib
|
|
, mkShell
|
|
, teepot
|
|
, dive
|
|
, taplo
|
|
, vault
|
|
, cargo-release
|
|
}:
|
|
mkShell {
|
|
inputsFrom = [ teepot.teepot ];
|
|
|
|
shellHook = ''
|
|
export OPENSSL_NO_VENDOR="1";
|
|
'';
|
|
|
|
packages = [
|
|
dive
|
|
taplo
|
|
vault
|
|
cargo-release
|
|
];
|
|
}
|