Skip to content

Commit

Permalink
rebase and fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
abonander committed Apr 14, 2022
1 parent b2796ef commit f813c25
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion sqlx-core/src/postgres/types/ltree.rs
Expand Up @@ -29,7 +29,7 @@ pub struct PgLTreeLabel(String);
impl PgLTreeLabel {
pub fn new<S>(label: S) -> Result<Self, PgLTreeParseError>
where
S: Into<String>,
String: From<S>,
{
let label = String::from(label);
if label.len() <= 256
Expand Down

0 comments on commit f813c25

Please sign in to comment.