Skip to content

Commit

Permalink
renaming project to flagfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dzhibas committed Feb 23, 2024
1 parent 08a0380 commit 8a7c087
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bool_expr_parser_nom"
version = "0.3.6"
name = "flagfile"
version = "0.3.7"
edition = "2021"
authors = ["Nikolajus Krauklis <[email protected]>"]

Expand Down
6 changes: 3 additions & 3 deletions tests/parser_test.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use std::collections::HashMap;

use bool_expr_parser_nom::ast::Atom;
use bool_expr_parser_nom::eval::Context;
use bool_expr_parser_nom::{self, eval::eval, parse::parse};
use flagfile::ast::Atom;
use flagfile::eval::Context;
use flagfile::{self, eval::eval, parse::parse};
use chrono::NaiveDate;

#[test]
Expand Down

0 comments on commit 8a7c087

Please sign in to comment.