Replace git dependencies with path

This commit is contained in:
Maybe Waffle 2022-11-07 16:17:42 +04:00
parent 1d84b2b76a
commit c942459da8
2 changed files with 3 additions and 3 deletions

View file

@ -18,4 +18,4 @@ heck = "0.4.0"
[dev-dependencies]
# XXX: Do not enable `macros` feature
teloxide = { git = "https://github.com/teloxide/teloxide.git", rev = "b5e237a8a22f9f987b6e4245b9b6c3ca1f804c19" }
teloxide = { path = "../teloxide" }

View file

@ -68,8 +68,8 @@ serde = { version = "1.0", features = ["derive"] }
dptree = "0.3.0"
# These lines are used only for development.
# teloxide-core = { git = "https://github.com/teloxide/teloxide-core", rev = "00165e6", default-features = false }
# teloxide-macros = { git = "https://github.com/teloxide/teloxide-macros", rev = "e715105", optional = true }
# teloxide-core = { path = "../teloxide-core", default-features = false }
# teloxide-macros = { path = "../teloxide-macros", optional = true }
# dptree = { git = "https://github.com/teloxide/dptree", rev = "df578e4" }
tokio = { version = "1.8", features = ["fs"] }