mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
Merge pull request #836 from teloxide/multiversion
Automatically use `path` versions for development
This commit is contained in:
commit
fb48943871
2 changed files with 5 additions and 5 deletions
|
@ -17,6 +17,8 @@ categories = ["api-bindings", "asynchronous"]
|
||||||
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
# NB: When adding features here, don't forget to update teloxide's Cargo.toml
|
||||||
|
|
||||||
default = ["native-tls"]
|
default = ["native-tls"]
|
||||||
|
|
||||||
rustls = ["reqwest/rustls-tls"]
|
rustls = ["reqwest/rustls-tls"]
|
||||||
|
|
|
@ -63,17 +63,15 @@ full = [
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
teloxide-core = { version = "0.9.0", default-features = false }
|
teloxide-core = { version = "0.9.0", path = "../teloxide-core", default-features = false }
|
||||||
teloxide-macros = { version = "0.7.1", optional = true }
|
teloxide-macros = { version = "0.7.1", path = "../teloxide-macros", optional = true }
|
||||||
|
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
|
||||||
dptree = "0.3.0"
|
dptree = "0.3.0"
|
||||||
|
|
||||||
# These lines are used only for development.
|
# Uncomment this if you want to test teloxide with a specific dptree commit
|
||||||
# teloxide-core = { path = "../teloxide-core", default-features = false }
|
|
||||||
# teloxide-macros = { path = "../teloxide-macros", optional = true }
|
|
||||||
# dptree = { git = "https://github.com/teloxide/dptree", rev = "df578e4" }
|
# dptree = { git = "https://github.com/teloxide/dptree", rev = "df578e4" }
|
||||||
|
|
||||||
tokio = { version = "1.8", features = ["fs"] }
|
tokio = { version = "1.8", features = ["fs"] }
|
||||||
|
|
Loading…
Reference in a new issue