Migrate from bincode to rkyv
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -12,16 +12,16 @@ license = "GPL-2.0-or-later"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4.21"
|
||||
reqwest = { version = "0.12.14", features = ["json"] }
|
||||
reqwest = { version = "0.12.14", features = ["json"] }
|
||||
base64 = "0.22.0"
|
||||
serde = { version = "1.0.198", features = ["derive"] }
|
||||
serde_json = "1.0.115"
|
||||
urlencoding = "2.1.3"
|
||||
|
||||
# Dependencies for crypto wrapper
|
||||
bincode = { version = "3.0.0", optional = true }
|
||||
rkyv = { version = "0.8.12", optional = true }
|
||||
aes-gcm = { version = "0.10.3", optional = true }
|
||||
rand = { version = "0.9.0", optional = true }
|
||||
|
||||
[features]
|
||||
crypto-wrapper = ["bincode", "aes-gcm", "rand"]
|
||||
crypto-wrapper = ["rkyv", "aes-gcm", "rand"]
|
||||
|
||||
Reference in New Issue
Block a user