Simon Guest
Simon Guest
OK, no problem. As far as my application is concerned, `Engine::add_search_directory()` is all I need, and I'm doing this: My devshell in my `flake.nix` contains this: ``` shellHook = ''...
Ah, our comments crossed in the post. Yes, I think what you say is fine.
I think it will be great when distros are packaging Steel in such a way that this all works nicely for end users, and people can play with Steel without...
Thanks, forge sounds great, I'll give it a go and report back!
OK, hopefully this is enough. The failing `cdr-assoc` is in the `let (extractor (cdr-assoc format extractors))` in the middle of this nested transducer (which I haven't seen working yet, taking...
(I did fix the underlying problem, although still no backtrace, but I am pleased to see the nested transducer doing what I wanted. Although I wasn't sure I really liked...
Thank you for your detailed response! This is not a blocker for me, so I will not attempt a quick work-around. My problem was caused by a function silently failing...
It's not hard to wrap e.g. rust_decimal for use in Steel. That's what I did, [here](https://github.com/tesujimath/beancount-lima/blob/7bee43f0b32cb6e3d4e9af89a29fd4f2716e2619/src/types.rs#L189), in case that helps. You'll also need to [register](https://github.com/tesujimath/beancount-lima/blob/7bee43f0b32cb6e3d4e9af89a29fd4f2716e2619/src/types.rs#L452) the type and its methods....