Skip to content

Commit

Permalink
Merge branch 'inputfilter_refactor' of github.com:elycruz/wal-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
elycruz committed Feb 2, 2024
2 parents 71e6e2e + fda7340 commit b6f2460
Show file tree
Hide file tree
Showing 46 changed files with 2,488 additions and 1,289 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.rs eol=crlf
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "walrs"
version = "0.1.0"
edition = "2021"
rust-version = "1.77"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion _recycler/form/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ edition = "2021"
walrs_inputfilter = { path = "../inputfilter" }
bytes = "1.4.0"
regex = "1.3.1"
derive_builder = "0.9.0"
derive_builder = "0.12.0"
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.82"
4 changes: 4 additions & 0 deletions _recycler/form/src/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,7 @@ pub trait FormControl<'a, 'b, Value: 'b, Constraints: 'a>
})
}
}

pub trait WithName<'a> {
fn get_name(&self) -> Option<Cow<'a, str>>;
}
Loading

0 comments on commit b6f2460

Please sign in to comment.