mirror of
https://github.com/chatmail/core.git
synced 2026-05-22 16:26:31 +03:00
build: use workspace dependencies to make cargo-deny 0.15.1 happy
This commit is contained in:
@@ -34,7 +34,7 @@ strip = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
deltachat_derive = { path = "./deltachat_derive" }
|
deltachat_derive = { path = "./deltachat_derive" }
|
||||||
deltachat-time = { path = "./deltachat-time" }
|
deltachat-time = { path = "./deltachat-time" }
|
||||||
deltachat-contact-tools = { path = "./deltachat-contact-tools" }
|
deltachat-contact-tools = { workspace = true }
|
||||||
format-flowed = { path = "./format-flowed" }
|
format-flowed = { path = "./format-flowed" }
|
||||||
ratelimit = { path = "./deltachat-ratelimit" }
|
ratelimit = { path = "./deltachat-ratelimit" }
|
||||||
|
|
||||||
@@ -163,6 +163,9 @@ ansi_term = "0.12.1"
|
|||||||
async-channel = "2.3.1"
|
async-channel = "2.3.1"
|
||||||
base64 = "0.22"
|
base64 = "0.22"
|
||||||
chrono = { version = "0.4.38", default-features = false }
|
chrono = { version = "0.4.38", default-features = false }
|
||||||
|
deltachat-contact-tools = { path = "deltachat-contact-tools" }
|
||||||
|
deltachat-jsonrpc = { path = "deltachat-jsonrpc" }
|
||||||
|
deltachat = { path = "." }
|
||||||
futures = "0.3.30"
|
futures = "0.3.30"
|
||||||
futures-lite = "2.3.0"
|
futures-lite = "2.3.0"
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
|
|||||||
@@ -14,8 +14,8 @@ name = "deltachat"
|
|||||||
crate-type = ["cdylib", "staticlib"]
|
crate-type = ["cdylib", "staticlib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deltachat = { path = "../", default-features = false }
|
deltachat = { workspace = true, default-features = false }
|
||||||
deltachat-jsonrpc = { path = "../deltachat-jsonrpc", optional = true }
|
deltachat-jsonrpc = { workspace = true, optional = true }
|
||||||
libc = { workspace = true }
|
libc = { workspace = true }
|
||||||
human-panic = { version = "2", default-features = false }
|
human-panic = { version = "2", default-features = false }
|
||||||
num-traits = { workspace = true }
|
num-traits = { workspace = true }
|
||||||
|
|||||||
@@ -14,8 +14,8 @@ required-features = ["webserver"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
deltachat = { path = ".." }
|
deltachat = { workspace = true }
|
||||||
deltachat-contact-tools = { path = "../deltachat-contact-tools" }
|
deltachat-contact-tools = { workspace = true }
|
||||||
num-traits = { workspace = true }
|
num-traits = { workspace = true }
|
||||||
schemars = "0.8.21"
|
schemars = "0.8.21"
|
||||||
serde = { workspace = true, features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ repository = "https://github.com/deltachat/deltachat-core-rust"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
ansi_term = { workspace = true }
|
ansi_term = { workspace = true }
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
deltachat = { path = "..", features = ["internals"]}
|
deltachat = { workspace = true, features = ["internals"]}
|
||||||
dirs = "5"
|
dirs = "5"
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
rusqlite = { workspace = true }
|
rusqlite = { workspace = true }
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ keywords = ["deltachat", "chat", "openpgp", "email", "encryption"]
|
|||||||
categories = ["cryptography", "std", "email"]
|
categories = ["cryptography", "std", "email"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deltachat-jsonrpc = { path = "../deltachat-jsonrpc", default-features = false }
|
deltachat-jsonrpc = { workspace = true, default-features = false }
|
||||||
deltachat = { path = "..", default-features = false }
|
deltachat = { workspace = true, default-features = false }
|
||||||
|
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
futures-lite = { workspace = true }
|
futures-lite = { workspace = true }
|
||||||
|
|||||||
Reference in New Issue
Block a user