Improve docs a bit

This commit is contained in:
Luke Parker
2024-06-19 08:36:26 -04:00
parent 08b95abdd8
commit 6f61861d4b
8 changed files with 11 additions and 16 deletions

View File

@@ -18,8 +18,6 @@ workspace = true
[dependencies]
std-shims = { path = "../../common/std-shims", version = "^0.1.1", default-features = false }
thiserror = { version = "1", default-features = false, optional = true }
zeroize = { version = "^1.5", default-features = false, features = ["zeroize_derive"] }
rand_core = { version = "0.6", default-features = false }
@@ -38,16 +36,10 @@ hex = { version = "0.4", default-features = false, features = ["alloc"] }
serde = { version = "1", default-features = false, features = ["derive", "alloc"] }
serde_json = { version = "1", default-features = false, features = ["alloc"] }
# Used for the provided HTTP RPC
digest_auth = { version = "0.3", default-features = false, optional = true }
tokio = { version = "1", default-features = false, optional = true }
[features]
std = [
"std-shims/std",
"thiserror",
"zeroize/std",
"rand_core/std",
@@ -67,4 +59,4 @@ std = [
compile-time-generators = ["curve25519-dalek/precomputed-tables", "monero-bulletproofs/compile-time-generators"]
multisig = ["monero-clsag/multisig", "std"]
#binaries = ["tokio/rt-multi-thread", "tokio/macros", "http-rpc"]
default = ["std"]
default = ["std", "compile-time-generators"]