Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Pin dependencies and update to Rust 1.64
Browse files Browse the repository at this point in the history
  • Loading branch information
jbearer committed Nov 21, 2022
1 parent b53e2e8 commit 8b727ff
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/slow-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/espressosystems/devops-rust:1.63
image: ghcr.io/espressosystems/devops-rust:1.64
steps:
- uses: styfle/[email protected]
name: Cancel Outdated Builds
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "seahorse"
description = "A generic cap-style cryptocurrency keystore."
authors = ["Espresso Systems <[email protected]>"]
version = "0.3.0"
version = "0.3.1"
edition = "2018"
license = "GPL-3.0-or-later"

Expand Down Expand Up @@ -50,13 +50,13 @@ zeroize = "1.3"
# local dependencies
atomic_store = { git = "https://github.com/EspressoSystems/atomicstore.git", tag = "0.1.3" }
commit = { git = "https://github.com/EspressoSystems/commit.git", tag = "0.2.0" }
key-set = { git = "https://github.com/EspressoSystems/key-set.git" }
key-set = { git = "https://github.com/EspressoSystems/key-set.git", tag = "0.3.0" }
espresso-macros = { git = "https://github.com/EspressoSystems/espresso-macros.git", tag = "0.1.0" }
jf-cap = { features=["std"], git = "https://github.com/EspressoSystems/cap.git", branch = "testnet-v1" }
jf-primitives = { features=["std"], git = "https://github.com/EspressoSystems/jellyfish.git", tag = "0.1.2" }
jf-utils = { features=["std"], git = "https://github.com/EspressoSystems/jellyfish.git", tag = "0.1.2" }
arbitrary-wrappers = { git = "https://github.com/EspressoSystems/arbitrary-wrappers.git"}
reef = { git = "https://github.com/EspressoSystems/reef.git" }
reef = { git = "https://github.com/EspressoSystems/reef.git", tag = "0.3.0" }
tagged-base64 = { git = "https://github.com/EspressoSystems/tagged-base64.git", tag = "0.2.1" }

[dev-dependencies]
Expand All @@ -65,7 +65,7 @@ proptest = "1.0.0"
quickcheck = "1.0"
quickcheck_macros = "1.0"
rand = "0.8.5"
reef = { git = "https://github.com/EspressoSystems/reef.git", features = ["testing"] }
reef = { git = "https://github.com/EspressoSystems/reef.git", tag = "0.3.0", features = ["testing"] }

[features]
slow-tests = []
Expand Down
18 changes: 9 additions & 9 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
let
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs { inherit system overlays; };
stableToolchain = pkgs.rust-bin.stable."1.63.0".minimal.override {
stableToolchain = pkgs.rust-bin.stable."1.64.0".minimal.override {
extensions = [ "rustfmt" "clippy" "llvm-tools-preview" "rust-src" ];
};
stableMuslRustToolchain =
pkgs.rust-bin.stable."1.63.0".minimal.override {
pkgs.rust-bin.stable."1.65.0".minimal.override {
extensions = [ "rustfmt" "clippy" "llvm-tools-preview" "rust-src" ];
targets = [ "x86_64-unknown-linux-musl" ];
};
Expand Down

0 comments on commit 8b727ff

Please sign in to comment.