mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 22:57:59 -05:00
Replace bundled-sqlcipher with bundled-sqlcipher-vendored-openssl
This commit is contained in:
@@ -129,8 +129,8 @@ wasmer-compiler-singlepass = {version = "3.3.0", optional = true}
|
||||
wasmer-middlewares = {version = "3.3.0", optional = true}
|
||||
|
||||
# Wallet management
|
||||
rusqlite = {version = "0.29.0", features = ["bundled-sqlcipher"], optional = true}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher"], optional = true}
|
||||
rusqlite = {version = "0.29.0", features = ["bundled-sqlcipher-vendored-openssl"], optional = true}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"], optional = true}
|
||||
|
||||
# Blockchain store
|
||||
sled = {version = "0.34.7", optional = true}
|
||||
|
||||
@@ -25,7 +25,7 @@ rand = "0.8.5"
|
||||
# Misc
|
||||
clap = {version = "4.3.3", features = ["derive"]}
|
||||
chrono = "0.4.26"
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher"]}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
|
||||
log = "0.4.19"
|
||||
ripemd = "0.1.3"
|
||||
sled = "0.34.7"
|
||||
|
||||
@@ -15,7 +15,7 @@ blake3 = "1.4.0"
|
||||
darkfi = {path = "../../../", features = ["dht"]}
|
||||
darkfi-serial = {path = "../../../src/serial", features = ["derive", "crypto"]}
|
||||
easy-parallel = "3.3.0"
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher"]}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
|
||||
log = "0.4.19"
|
||||
rand = "0.8.5"
|
||||
simplelog = "0.12.1"
|
||||
|
||||
@@ -27,7 +27,7 @@ async-channel = "1.8.0"
|
||||
clap = {version = "4.3.3", features = ["derive"]}
|
||||
rand = "0.8.5"
|
||||
simplelog = "0.12.1"
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher"]}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
|
||||
log = "0.4.19"
|
||||
url = "2.4.0"
|
||||
thiserror = "1.0.40"
|
||||
|
||||
@@ -16,7 +16,7 @@ async-std = {version = "1.12.0", features = ["attributes"]}
|
||||
|
||||
# Misc
|
||||
clap = {version = "4.3.3", features = ["derive"]}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher"]}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
|
||||
log = "0.4.19"
|
||||
serde_json = "1.0.96"
|
||||
simplelog = "0.12.1"
|
||||
|
||||
@@ -15,7 +15,7 @@ darkfi-serial = {path = "../../../src/serial"}
|
||||
# Misc
|
||||
async-trait = "0.1.68"
|
||||
blake3 = "1.4.0"
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher"]}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
|
||||
log = "0.4.19"
|
||||
serde_json = "1.0.96"
|
||||
url = "2.4.0"
|
||||
|
||||
@@ -14,7 +14,7 @@ darkfi-serial = {path = "../../../src/serial"}
|
||||
|
||||
async-std = {version = "1.12.0", features = ["attributes"]}
|
||||
clap = {version = "4.3.3", features = ["derive"]}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher"]}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
|
||||
log = "0.4.19"
|
||||
simplelog = "0.12.1"
|
||||
serde = {version = "1.0.164", features = ["derive"]}
|
||||
|
||||
@@ -14,7 +14,7 @@ darkfi-serial = {path = "../../../src/serial"}
|
||||
|
||||
# Misc
|
||||
async-trait = "0.1.68"
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher"]}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
|
||||
log = "0.4.19"
|
||||
serde_json = "1.0.96"
|
||||
url = "2.4.0"
|
||||
|
||||
@@ -14,7 +14,7 @@ darkfi = {path = "../../", features = ["net", "rpc"]}
|
||||
# Misc
|
||||
async-trait = "0.1.68"
|
||||
futures = "0.3.28"
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher"]}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
|
||||
log = "0.4.19"
|
||||
semver = "1.0.17"
|
||||
serde_json = "1.0.96"
|
||||
|
||||
@@ -17,7 +17,7 @@ async-std = {version = "1.12.0", features = ["attributes"]}
|
||||
# Misc
|
||||
chrono = "0.4.26"
|
||||
colored = "2.0.0"
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher"]}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
|
||||
log = "0.4.19"
|
||||
prettytable-rs = "0.10.0"
|
||||
simplelog = "0.12.1"
|
||||
|
||||
@@ -20,7 +20,7 @@ crypto_box = {version = "0.8.2", features = ["std"]}
|
||||
futures = "0.3.28"
|
||||
hex = "0.4.3"
|
||||
libc = "0.2.144"
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher"]}
|
||||
libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
|
||||
log = "0.4.19"
|
||||
rand = "0.8.5"
|
||||
serde_json = "1.0.96"
|
||||
|
||||
Reference in New Issue
Block a user