Skip to content

Commit 45c34f9

Browse files
committed
Merge #116: Update simplicity
0a974f1 ci: Run tests on other platforms (Christian Lewe) fb4a1d3 test: Check type error (Christian Lewe) 0dd62d2 feat: Support Apple silicon in flake (Christian Lewe) c4832fe fix: Prune test programs (Christian Lewe) 826351c chore: Keep elements::Locktime prefix (Christian Lewe) 854db1a chore: Use bundled hex crate (Christian Lewe) b3565e1 chore: Update rust-simplicity (Christian Lewe) c8e2565 chore: Bump MSRV to 1.78.0 (Christian Lewe) Pull request description: Update rust-simplicity to the latest version. This brings support for Mac and optimizations of the internal representation of Simplicity values. CI is enabled for Mac. Fixes #114 ACKs for top commit: apoelstra: ACK 0a974f1; successfully ran local tests Tree-SHA512: 50fabfa67e5539d552cd18435690aa23a4791e1188adb378853291c3c661253c4bdd48506e8603d9ecc4e20d73ace50f3a7dff81ed3317661aee35b68114b14a
2 parents a522ee4 + 0a974f1 commit 45c34f9

File tree

11 files changed

+73
-61
lines changed

11 files changed

+73
-61
lines changed

.github/workflows/test.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ jobs:
2121

2222
test-stable:
2323
name: Test - stable toolchain
24-
runs-on: ubuntu-latest
24+
runs-on: ${{ matrix.os }}
25+
strategy:
26+
matrix:
27+
os: [ubuntu-latest, macos-latest]
2528

2629
steps:
2730
- name: Checkout

Cargo.lock

+4-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ homepage = "https://github.com/BlockstreamResearch/simfony/"
77
repository = "https://github.com/BlockstreamResearch/simfony/"
88
description = "Rust-like language that compiles to Simplicity bytecode."
99
edition = "2021"
10-
rust-version = "1.63.0"
10+
rust-version = "1.78.0"
1111

1212
[lib]
1313
name = "simfony"
@@ -22,12 +22,11 @@ serde = ["dep:serde", "dep:serde_json"]
2222

2323
[dependencies]
2424
base64 = "0.21.2"
25-
hex-conservative = "0.1.1"
2625
pest = "2.1.3"
2726
pest_derive = "2.7.1"
2827
serde = { version = "1.0.188", features = ["derive"], optional = true }
2928
serde_json = { version = "1.0.105", optional = true }
30-
simplicity-lang = { git = "https://github.com/BlockstreamResearch/rust-simplicity", rev = "ca0c0ebee295937ab021ad018acc44a5aaa12649" }
29+
simplicity-lang = { git = "https://github.com/BlockstreamResearch/rust-simplicity", rev = "2f52e22483079ace09e76754222220b5c230a9d0" }
3130
miniscript = "12.2.0"
3231
either = "1.12.0"
3332
itertools = "0.13.0"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Take a look at the [example programs](https://github.com/BlockstreamResearch/sim
2020

2121
## MSRV
2222

23-
This crate should compile with any feature combination on **Rust 1.63.0** or higher.
23+
This crate should compile with any feature combination on **Rust 1.78.0** or higher.
2424

2525
## Simplicity's need for a high-level language
2626

bitcoind-tests/Cargo.lock

+4-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clippy.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.63.0"
1+
msrv = "1.78.0"

codegen/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
name = "codegen"
33
version = "0.1.0"
44
edition = "2021"
5-
rust-version = "1.63.0"
65
description = "Generator of Rust code as interface between Simfony and Rust."
76
publish = false
87

flake.nix

+6-8
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,8 @@
1414
, rust-overlay
1515
, ...
1616
}:
17-
flake-utils.lib.eachSystem [
18-
"x86_64-linux"
19-
"aarch64-linux"
20-
"x86_64-darwin"
21-
] (system:
17+
flake-utils.lib.eachDefaultSystem
18+
(system:
2219
let
2320
overlays = [
2421
(import rust-overlay)
@@ -35,23 +32,24 @@
3532
CC_wasm32_unknown_unknown = "${pkgs.llvmPackages_16.clang-unwrapped}/bin/clang-16";
3633
AR_wasm32_unknown_unknown = "${pkgs.llvmPackages_16.libllvm}/bin/llvm-ar";
3734
CFLAGS_wasm32_unknown_unknown = "-I ${pkgs.llvmPackages_16.libclang.lib}/lib/clang/16/include/";
35+
gdbSupported = !(pkgs.stdenv.isDarwin && pkgs.stdenv.isAarch64);
3836
default_shell = with_elements: pkgs.mkShell {
3937
buildInputs = [
4038
defaultRust
4139
pkgs.just
42-
pkgs.gdb
4340
pkgs.cargo-hack
4441
pkgs.mdbook
4542
] ++ (
4643
if with_elements then [ elementsd-simplicity ] else []
44+
) ++ (
45+
if gdbSupported then [ pkgs.gdb ] else []
4746
);
4847
inherit CC_wasm32_unknown_unknown;
4948
inherit AR_wasm32_unknown_unknown;
5049
inherit CFLAGS_wasm32_unknown_unknown;
5150
# Constants for IDE
5251
RUST_TOOLCHAIN = "${defaultRust}/bin";
5352
RUST_STDLIB = "${defaultRust}/lib/rustlib/src/rust";
54-
DEBUGGER = "${pkgs.gdb}";
5553
};
5654
in
5755
{
@@ -68,7 +66,7 @@
6866
};
6967
msrv = pkgs.mkShell {
7068
buildInputs = [
71-
(mkRust "stable" "1.63.0" "minimal" [] [])
69+
(mkRust "stable" "1.78.0" "minimal" [] [])
7270
pkgs.just
7371
];
7472
};

src/lib.rs

+21-7
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,6 @@ pub trait ArbitraryOfType: Sized {
249249
mod tests {
250250
use base64::display::Base64Display;
251251
use base64::engine::general_purpose::STANDARD;
252-
#[cfg(feature = "serde")]
253-
use elements::LockTime;
254252
use simplicity::BitMachine;
255253
use std::borrow::Cow;
256254
use std::path::Path;
@@ -392,9 +390,11 @@ mod tests {
392390
}
393391

394392
fn run(self) -> Result<(), simplicity::bit_machine::ExecutionError> {
395-
let mut mac = BitMachine::for_program(self.program.redeem());
396393
let env = dummy_env::dummy_with(self.lock_time, self.sequence, self.include_fee_output);
397-
mac.exec(self.program.redeem(), &env).map(|_| ())
394+
let pruned = self.program.redeem().prune(&env)?;
395+
let mut mac = BitMachine::for_program(&pruned)
396+
.expect("program should be within reasonable bounds");
397+
mac.exec(&pruned, &env).map(|_| ())
398398
}
399399

400400
pub fn assert_run_success(self) {
@@ -425,7 +425,7 @@ mod tests {
425425
let mut t = TestCase::program_file("./examples/non_interactive_fee_bump.simf")
426426
.with_witness_file("./examples/non_interactive_fee_bump.wit");
427427
t.sequence = elements::Sequence::ENABLE_LOCKTIME_NO_RBF;
428-
t.lock_time = LockTime::from_time(1734967235 + 600).unwrap();
428+
t.lock_time = elements::LockTime::from_time(1734967235 + 600).unwrap();
429429
t.include_fee_output = true;
430430
t.assert_run_success();
431431
}
@@ -613,8 +613,22 @@ fn main() {
613613
fn main() {
614614
let x: MyAlias = 32;
615615
assert!(jet::eq_32(x, 32));
616-
}
617-
"#;
616+
}"#;
617+
TestCase::program_text(Cow::Borrowed(prog_text))
618+
.with_witness_values(WitnessValues::default())
619+
.assert_run_success();
620+
}
621+
622+
#[test]
623+
fn type_error_regression() {
624+
let prog_text = r#"fn main() {
625+
let (a, b): (u32, u32) = (0, 1);
626+
assert!(jet::eq_32(a, 0));
627+
628+
let (c, d): (u32, u32) = (2, 3);
629+
assert!(jet::eq_32(c, 2));
630+
assert!(jet::eq_32(d, 3));
631+
}"#;
618632
TestCase::program_text(Cow::Borrowed(prog_text))
619633
.with_witness_values(WitnessValues::default())
620634
.assert_run_success();

src/named.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ use std::sync::Arc;
33
use simplicity::dag::{InternalSharing, PostOrderIterItem};
44
use simplicity::jet::{Elements, Jet};
55
use simplicity::node::{
6-
self, CommitData, Constructible, Converter, CoreConstructible, Inner, JetConstructible,
7-
NoDisconnect, NoWitness, Node, WitnessConstructible, WitnessData,
6+
self, CommitData, ConstructData as WitnessData, Constructible, Converter, CoreConstructible,
7+
Inner, JetConstructible, NoDisconnect, NoWitness, Node, WitnessConstructible,
88
};
99
use simplicity::types::arrow::Arrow;
1010
use simplicity::{types, CommitNode, FailEntropy};
11-
use simplicity::{Cmr, WitnessNode};
11+
use simplicity::{Cmr, ConstructNode as WitnessNode};
1212

1313
use crate::str::WitnessName;
1414
use crate::value::StructuralValue;
@@ -105,7 +105,7 @@ pub fn to_witness_node(node: &ConstructNode, values: WitnessValues) -> Arc<Witne
105105
inference_context: types::Context,
106106
}
107107

108-
impl<J: Jet> Converter<Construct<J>, node::Witness<J>> for Populator {
108+
impl<J: Jet> Converter<Construct<J>, node::Construct<J>> for Populator {
109109
type Error = ();
110110

111111
fn convert_witness(

0 commit comments

Comments
 (0)