Set the Rust tool-chain
This commit is contained in:
parent
9d7a88be43
commit
f818586b33
3 changed files with 6 additions and 2 deletions
2
Setup.hs
2
Setup.hs
|
@ -58,7 +58,7 @@ execCargo verbosity command args = do
|
|||
IODataModeBinary
|
||||
|
||||
rsMake :: Verbosity -> IO ()
|
||||
rsMake verbosity = execCargo verbosity "+nightly-2024-02-04" ["cbuild"]
|
||||
rsMake verbosity = execCargo verbosity "cbuild" []
|
||||
|
||||
rsAddDirs :: LocalBuildInfo -> IO LocalBuildInfo
|
||||
rsAddDirs lbi' = do
|
||||
|
|
4
librustzcash-wrapper/rust-toolchain.toml
Normal file
4
librustzcash-wrapper/rust-toolchain.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[toolchain]
|
||||
channel = "nightly-2024-02-04"
|
||||
components = [ "rustfmt", "rustc-dev"]
|
||||
profile = "minimal"
|
|
@ -5,7 +5,7 @@ cabal-version: 3.0
|
|||
-- see: https://github.com/sol/hpack
|
||||
|
||||
name: zcash-haskell
|
||||
version: 0.4.2.1
|
||||
version: 0.4.2.2
|
||||
synopsis: Utilities to interact with the Zcash blockchain
|
||||
description: Please see the README on the repo at <https://git.vergara.tech/Vergara_Tech/zcash-haskell#readme>
|
||||
category: Blockchain
|
||||
|
|
Loading…
Reference in a new issue