mystuff/net/gurk-rs/files/vendor/presage/Cargo.toml

50 lines
1.2 KiB
TOML
Raw Normal View History

2022-10-31 22:01:15 +01:00
[package]
# be a sign or warning of (an imminent event, typically an unwelcome one).
name = "presage"
version = "0.2.0"
authors = ["Gabriel Féron <feron.gabriel@gmail.com>"]
edition = "2018"
[dependencies]
libsignal-service = { git = "https://github.com/boxdot/libsignal-service-rs", rev = "8be91da2" }
libsignal-service-hyper = { git = "https://github.com/boxdot/libsignal-service-rs", rev = "8be91da2" }
async-trait = "0.1"
base64 = "0.12"
futures = "0.3"
hex = "0.4.2"
log = "0.4.8"
rand = "0.7"
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
sled = { version = "0.34", optional = true }
qr2term = "0.2.2"
[dev-dependencies]
# for tests
quickcheck = "1.0.3"
quickcheck_async = "0.1"
# for examples
anyhow = "1.0"
directories = "3.0"
env_logger = "0.7"
futures = "0.3"
hex = "0.4"
log = "0.4"
rand = "0.7"
serde_json = "1.0"
structopt = "0.3"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
url = "2.2.2"
[features]
default = ["sled-store"]
quirks = []
sled-store = ["sled"]
#[patch."https://github.com/whisperfish/libsignal-service-rs.git"]
#libsignal-service = { path = "../libsignal-service-rs/libsignal-service" }
#libsignal-service-hyper = { path = "../libsignal-service-rs/libsignal-service-hyper" }