diff --git a/Cargo.toml b/Cargo.toml index a4ece2c9..2ae8da8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,8 @@ full = [ ] [dependencies] -teloxide-core = { version = "0.6.0", default-features = false } +#teloxide-core = { version = "0.6.0", default-features = false } +teloxide-core = { git = "https://github.com/teloxide/teloxide-core", rev = "b13393d", default-features = false } teloxide-macros = { version = "0.6.2", optional = true } serde_json = "1.0" diff --git a/src/utils/html.rs b/src/utils/html.rs index 11ae475d..dc655fbf 100644 --- a/src/utils/html.rs +++ b/src/utils/html.rs @@ -191,6 +191,8 @@ mod tests { last_name: None, username: Some("abcd".to_string()), language_code: None, + is_premium: false, + added_to_attachment_menu: false, }; assert_eq!(user_mention_or_link(&user_with_username), "@abcd"); let user_without_username = User { @@ -200,6 +202,8 @@ mod tests { last_name: None, username: None, language_code: None, + is_premium: false, + added_to_attachment_menu: false, }; assert_eq!( user_mention_or_link(&user_without_username), diff --git a/src/utils/markdown.rs b/src/utils/markdown.rs index c07d53d9..4419feb9 100644 --- a/src/utils/markdown.rs +++ b/src/utils/markdown.rs @@ -240,6 +240,8 @@ mod tests { last_name: None, username: Some("abcd".to_string()), language_code: None, + is_premium: false, + added_to_attachment_menu: false, }; assert_eq!(user_mention_or_link(&user_with_username), "@abcd"); let user_without_username = User { @@ -249,6 +251,8 @@ mod tests { last_name: None, username: None, language_code: None, + is_premium: false, + added_to_attachment_menu: false, }; assert_eq!( user_mention_or_link(&user_without_username),