https://github.com/luxedo/esb_fireplace-rust
Script your way to rescue Christmas as part of the ElfScript Brigade team.
https://github.com/luxedo/esb_fireplace-rust
Last synced: 13 days ago
JSON representation
Script your way to rescue Christmas as part of the ElfScript Brigade team.
- Host: GitHub
- URL: https://github.com/luxedo/esb_fireplace-rust
- Owner: luxedo
- License: gpl-3.0
- Created: 2024-04-08T16:56:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-20T17:34:41.000Z (3 months ago)
- Last Synced: 2025-04-12T05:37:20.345Z (15 days ago)
- Language: Rust
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# EsbFireplace - Rust
The [FIREPLACEv1.0 protocol](https://github.com/luxedo/esb/blob/main/doc/FIREPLACEv1.0.md)
allows the use of the `esb` tooling for solving Advent of Code problems.
This is an implementation of FIREPLACEv1.0 for [rust](https://www.rust-lang.org/).Check [esb](https://github.com/luxedo/esb) for more information.
## Installation
The package can be installed by adding `esb_fireplace` to your list of dependencies in `Cargo.toml`:
```toml
[dependencies]
esb_fireplace = { version = "0.3.0" }
```## Usage
Create your solution functions and add `esb_fireplace::v1_run` to `main`.
```rust
use esb_fireplace::{FireplaceError, FireplaceResult};use std::fmt::Display;
fn solve_pt1(input_data: &str, _args: Vec) -> FireplaceResult {
Ok(25)
}fn solve_pt2(input_data: &str, _args: Vec) -> FireplaceResult {
Ok("December")
}fn main() -> Result<(), FireplaceError> {
// 🎅🎄❄️☃️🎁🦌
// Bright christmas lights HERE
esb_fireplace::v1_run(solve_pt1, solve_pt2)
}
```Running can be done with `cargo`, but this library is meant to be used with [esb](https://github.com/luxedo/esb).
```bash
# You can do this...
cargo run -- --part 1 < input_data.txt# But instead do this:
esb run --year 2023 --day 1 --lang rust --part 1
```The docs can be found at .
## Contributors
We want to acknowledge and thank the following contributors for their efforts in making this project better:
- [gustavobat](https://github.com/gustavobat)
Thank you all for your valuable contributions!
## License
> ESB - Script your way to rescue Christmas as part of the ElfScript Brigade team.
> Copyright (C) 2024 Luiz Eduardo Amaral
>
> This program is free software: you can redistribute it and/or modify
> it under the terms of the GNU General Public License as published by
> the Free Software Foundation, either version 3 of the License, or
> (at your option) any later version.
> This program is distributed in the hope that it will be useful,
> but WITHOUT ANY WARRANTY; without even the implied warranty of
> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> GNU General Public License for more details.
> You should have received a copy of the GNU General Public License
> along with this program. If not, see .