Skip to content

Commit

Permalink
bump crown and sword
Browse files Browse the repository at this point in the history
  • Loading branch information
litlep-nibbyt committed Nov 12, 2024
1 parent 6ef1d85 commit 9a3a669
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 14 deletions.
89 changes: 80 additions & 9 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 @@ -4,10 +4,10 @@ version = "0.1.0"
edition = "2021"

[dependencies]
crown = { git = "https://github.com/zorp-corp/nockapp", rev="503a5afd0a969fb1d2c240ffc1793a694407072b" }
sword = { git = "https://github.com/zorp-corp/sword.git", rev="92f4f40cf7af714538b8766de6f7792eaa103cbd" }
sword_macros = { git = "https://github.com/zorp-corp/sword.git", rev="92f4f40cf7af714538b8766de6f7792eaa103cbd" }
assert_no_alloc = { git = "https://github.com/zorp-corp/sword.git", rev="92f4f40cf7af714538b8766de6f7792eaa103cbd" }
crown = { git = "https://github.com/zorp-corp/nockapp", rev="57f9d9f0d5cbd8bf0b88cd8c8a108c1f551e33d8" }
sword = { git = "https://github.com/zorp-corp/sword.git", rev="29cc8d897c8cb7a70e5baf52c9b83f5ef04fe509" }
sword_macros = { git = "https://github.com/zorp-corp/sword.git", rev="29cc8d897c8cb7a70e5baf52c9b83f5ef04fe509" }
assert_no_alloc = { git = "https://github.com/zorp-corp/sword.git", rev="29cc8d897c8cb7a70e5baf52c9b83f5ef04fe509" }
clap = { version = "4.4.4", features = ["derive", "cargo", "color", "env"]}
tokio = { version = "1.32", features = ["rt", "rt-multi-thread", "net", "macros", "io-util", "fs", "sync", "time"] }
tracing = "0.1.40"
Expand Down
3 changes: 2 additions & 1 deletion main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ enum Command {
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let cli = TestCli::parse();
let mut kernel = boot::setup(KERNEL_JAM, Some(cli.boot), &[])?;
let nockapp = boot::setup(KERNEL_JAM, Some(cli.boot), &[], "jock")?;
let mut kernel = nockapp.kernel;

let poke = match cli.command {
Command::TestN { n } => {
Expand Down

0 comments on commit 9a3a669

Please sign in to comment.