Skip to content

Commit

Permalink
fix(std): fix imporrt std
Browse files Browse the repository at this point in the history
  • Loading branch information
StunxFS committed Dec 2, 2023
1 parent d7cdadf commit 2bbb9eb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
4 changes: 2 additions & 2 deletions lib/std/src/hash/mod.ri
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
// Use of this source code is governed by an MIT license that can
// be found in the LICENSE file.

pub import fnv1a;
pub import wyhash;
pub import ./fnv1a;
pub import ./wyhash;
31 changes: 15 additions & 16 deletions lib/std/src/lib.ri
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,18 @@
// Use of this source code is governed by an MIT license that can
// be found in the LICENSE file.

pub import std/backtrace;
pub import std/console;
pub import std/conv;
pub import std/dynlib;
pub import std/env;
pub import std/errors;
pub import std/flag;
pub import std/fs;
pub import std/hash;
pub import std/math;
pub import std/mem;
pub import std/process;
pub import std/semver;
pub import std/strings;
pub import std/sys;
pub import std/traits;
pub import ./backtrace;
pub import ./console;
pub import ./dynlib;
pub import ./env;
pub import ./errors;
pub import ./flag;
pub import ./fs;
pub import ./hash;
pub import ./math;
pub import ./mem;
pub import ./process;
pub import ./semver;
pub import ./strings;
pub import ./sys;
pub import ./traits;

0 comments on commit 2bbb9eb

Please sign in to comment.