Skip to content

Commit

Permalink
feat(std/hash): re-export wyhash and fnv1a modules
Browse files Browse the repository at this point in the history
  • Loading branch information
StunxFS committed Nov 5, 2023
1 parent bbd21e6 commit fb44a78
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/self_host_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
cp -r lib/ rivet-nightly-linux-amd64/
zip -r rivet-nightly-linux-amd64.zip rivet-nightly-linux-amd64/
# - uses: dev-drprasad/delete-tag-and-release@v1.0
# with:
# tag_name: nightly
# github_token: ${{ secrets.GITHUB_TOKEN }}
# delete_release: false
- uses: dev-drprasad/delete-tag-and-release@v1.0
with:
tag_name: nightly
github_token: ${{ secrets.GITHUB_TOKEN }}
delete_release: true

- name: Create release
uses: ncipollo/release-action@v1
Expand Down
6 changes: 6 additions & 0 deletions lib/std/src/hash/mod.ri
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// Copyright (C) 2023 The Rivet Developers. All rights reserved.
// Use of this source code is governed by an MIT license that can
// be found in the LICENSE file.

public import fnv1a;
public import wyhash;
1 change: 1 addition & 0 deletions lib/std/src/lib.ri
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public import std/env;
public import std/errors;
public import std/flag;
public import std/fs;
public import std/hash;
public import std/math;
public import std/mem;
public import std/process;
Expand Down

0 comments on commit fb44a78

Please sign in to comment.