Compare commits
4 commits
Author | SHA1 | Date | |
---|---|---|---|
Christian Westrom | d35b2bd891 | ||
Christian Westrom | ded53aa08a | ||
Christian Westrom | b23f90df2e | ||
Christian Westrom | 87c9d1f003 |
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
target/
|
||||
.direnv
|
||||
|
|
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -213,12 +213,12 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "hbbytecode"
|
||||
version = "0.1.0"
|
||||
source = "git+https://git.ablecorp.us/AbleOS/holey-bytes.git#a1e692eac73fbf44f1fbf816832aaae0ea8f04d7"
|
||||
source = "git+https://git.ablecorp.us/AbleOS/holey-bytes.git#9fe8d6bbff0c9a2f9d8989635a9758bf9b2ed566"
|
||||
|
||||
[[package]]
|
||||
name = "hblang"
|
||||
version = "0.1.0"
|
||||
source = "git+https://git.ablecorp.us/AbleOS/holey-bytes.git#a1e692eac73fbf44f1fbf816832aaae0ea8f04d7"
|
||||
source = "git+https://git.ablecorp.us/AbleOS/holey-bytes.git#9fe8d6bbff0c9a2f9d8989635a9758bf9b2ed566"
|
||||
dependencies = [
|
||||
"hashbrown",
|
||||
"hbbytecode",
|
||||
|
@ -229,7 +229,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "hbvm"
|
||||
version = "0.1.0"
|
||||
source = "git+https://git.ablecorp.us/AbleOS/holey-bytes.git#a1e692eac73fbf44f1fbf816832aaae0ea8f04d7"
|
||||
source = "git+https://git.ablecorp.us/AbleOS/holey-bytes.git#9fe8d6bbff0c9a2f9d8989635a9758bf9b2ed566"
|
||||
dependencies = [
|
||||
"hbbytecode",
|
||||
]
|
||||
|
|
18
bacon.toml
Normal file
18
bacon.toml
Normal file
|
@ -0,0 +1,18 @@
|
|||
default_job = "build"
|
||||
env.CARGO_TERM_COLOR = "always"
|
||||
|
||||
[jobs.build]
|
||||
command = ["cargo", "repbuild", "build"]
|
||||
need_stdout = false
|
||||
|
||||
[jobs.run]
|
||||
command = ["cargo", "repbuild", "run", "--release"]
|
||||
need_stdout = false
|
||||
|
||||
[jobs.check]
|
||||
command = ["cargo", "check"]
|
||||
need_stdout = false
|
||||
|
||||
[jobs.clippy-all]
|
||||
command = ["cargo", "clippy", "--all-targets"]
|
||||
need_stdout = false
|
15
flake.nix
15
flake.nix
|
@ -2,13 +2,20 @@
|
|||
description = "A devShell example";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
rust-overlay.url = "github:oxalica/rust-overlay";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, rust-overlay, flake-utils }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
outputs =
|
||||
{
|
||||
self,
|
||||
nixpkgs,
|
||||
rust-overlay,
|
||||
flake-utils,
|
||||
}:
|
||||
flake-utils.lib.eachDefaultSystem (
|
||||
system:
|
||||
let
|
||||
overlays = [ (import rust-overlay) ];
|
||||
pkgs = import nixpkgs {
|
||||
|
|
Loading…
Reference in a new issue