diff options
| author | Max Audron <audron@cocaine.farm> | 2025-02-22 20:10:45 +0100 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2025-02-22 20:10:45 +0100 |
| commit | 6bd871a9af959ab7ca39d6250954e0f1f452b8f9 (patch) | |
| tree | 675d252137df85da0fdff7b304075a645e4da43a /Cargo.toml | |
| parent | update flake (diff) | |
update dependencies and fix errors
Diffstat (limited to '')
| -rw-r--r-- | Cargo.toml | 22 |
1 files changed, 14 insertions, 8 deletions
@@ -16,14 +16,14 @@ include = ["src/**/*", "LICENSE", "README.md"] log = "0.4" byteorder = "1.3.2" failure = "0.1" -time = "0.2" +time = { version = "0.3", features = ["macros", "parsing", "local-offset"] } num-traits = "0.2" -num-derive = "0.3" +num-derive = "0.4" -bitflags = "1" +bitflags = "2" -itertools = "0.10" +itertools = "0.14" crossbeam-channel = "0.5" once_cell = "1" @@ -31,15 +31,21 @@ once_cell = "1" libquassel-derive = { path = "./derive" } bytes = { version = "1.0", optional = true } -flate2 = { version = "1.0", features = ["tokio"], optional = true } +flate2 = { version = "1.0", optional = true } tokio = { version = "1", features = [], optional = true } -tokio-util = { version = "0.6", features = ["codec"], optional = true } +tokio-util = { version = "0.7", features = ["codec"], optional = true } [features] framing = ["tokio", "tokio-util", "flate2", "bytes"] # Enable all the quassel features -all-quassel-features = ["long-message-id", "long-time", "rich-messages", "sender-prefixes", "authenticators"] +all-quassel-features = [ + "long-message-id", + "long-time", + "rich-messages", + "sender-prefixes", + "authenticators", +] # Either act as a client or a server client = [] @@ -73,7 +79,7 @@ futures = { version = "0.3" } # tokio = { version = "0.3", features = ["full"] } # tokio-util = { version = "0.5", features = ["codec"] } tokio-test = { version = "0.4" } -pretty_assertions = "0.6" +pretty_assertions = "1" [workspace] members = ["derive"] |
