mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-01-18 08:44:33 +00:00
add TODO for strum
This commit is contained in:
parent
87e99da0eb
commit
4830a26180
2 changed files with 6 additions and 2 deletions
|
@ -75,7 +75,7 @@ rayon = { version = "1.9.0", default-features = false }
|
|||
serde_bytes = { version = "0.11.12", default-features = false }
|
||||
serde_json = { version = "1.0.108", default-features = false }
|
||||
serde = { version = "1.0.190", default-features = false }
|
||||
strum = { version = "0.26.2", default-features = false }
|
||||
strum = { version = "0.26.2", default-features = false } # TODO(hinto): do we need this?
|
||||
thiserror = { version = "1.0.50", default-features = false }
|
||||
thread_local = { version = "1.1.7", default-features = false }
|
||||
tokio-util = { version = "0.7.10", default-features = false }
|
||||
|
|
|
@ -7,7 +7,11 @@ use strum::{
|
|||
FromRepr, IntoStaticStr, VariantNames,
|
||||
};
|
||||
|
||||
//---------------------------------------------------------------------------------------------------- TODO
|
||||
// TODO(hinto):
|
||||
// Do we need `strum`? Are there other types
|
||||
// (maybe outside of this crate) that will use it?
|
||||
|
||||
//---------------------------------------------------------------------------------------------------- Status
|
||||
/// RPC response status.
|
||||
///
|
||||
/// This type represents `monerod`'s frequently appearing string field, `status`.
|
||||
|
|
Loading…
Reference in a new issue