Skip to content

Commit ac0144d

Browse files
committed
Rename to beamish
1 parent 201ff8d commit ac0144d

38 files changed

+4629
-571
lines changed

.claude/settings.local.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(BEAMISH_VERBOSE=1 cargo run --example sha256 full --verbose)",
5+
"Bash(BEAMISH_VERBOSE=1 cargo run --example sha256 full)",
6+
"Bash(RUST_LOG=binius_beamish=debug cargo run -p binius-beamish --example basic)",
7+
"Bash(RUST_LOG=debug cargo run -p binius-beamish --example basic)",
8+
"Bash(RUST_LOG=debug cargo run -p binius-beamish --example optimization_passes)",
9+
"Bash(RUST_LOG=debug rustc --edition 2024 -L target/debug/deps test_logging.rs -o test_logging --extern binius_beamish=target/debug/libbinius_beamish.rlib --extern env_logger=target/debug/deps/libenv_logger-4e48a980a9233cad.rlib)",
10+
"Bash(RUST_LOG=debug cargo run -p binius-beamish --example advanced_optimizations)",
11+
"Bash(RUST_LOG=debug rustc --edition 2021 -L target/debug/deps /tmp/test_rotation_as_operand.rs -o /tmp/test_rotation --extern binius_beamish=target/debug/libbinius_beamish.rlib --extern env_logger=target/debug/deps/libenv_logger-*.rlib)",
12+
"Bash(RUST_LOG=debug rustc --edition 2021 -L target/debug/deps /tmp/test_rotation_as_operand.rs -o /tmp/test_rotation --extern binius_beamish=target/debug/libbinius_beamish.rlib --extern env_logger=target/debug/deps/libenv_logger-c95c62dfd6ea925f.rlib)",
13+
"Bash(/tmp:*)",
14+
"Bash(RUST_LOG=debug /tmp/test_rotation)",
15+
"Bash(RUST_LOG=debug /tmp/test_xor_unopt)",
16+
"Bash(RUST_LOG=debug cargo run --example advanced_optimizations -- --no-xor-chain)"
17+
],
18+
"deny": [],
19+
"ask": []
20+
}
21+
}

crates/beamish/Cargo.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "binius-beamish"
3+
version.workspace = true
4+
edition.workspace = true
5+
authors.workspace = true
6+
7+
[dependencies]
8+
binius-core = { path = "../core" }
9+
binius-field = { path = "../field" }
10+
log = "0.4"
11+
env_logger = "0.11"
12+
13+
[dev-dependencies]

0 commit comments

Comments
 (0)