Support parsing depends:.. in CLI

This commit is contained in:
Dustin J. Mitchell
2022-02-21 22:15:31 +00:00
parent bf73cc4cc7
commit db1e1c9c96
4 changed files with 99 additions and 12 deletions

View File

@@ -2,7 +2,7 @@ use nom::{branch::*, character::complete::*, combinator::*, multi::*, sequence::
use taskchampion::Uuid;
/// A task identifier, as given in a filter command-line expression
#[derive(Debug, PartialEq, Clone)]
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
pub(crate) enum TaskId {
/// A small integer identifying a working-set task
WorkingSetId(usize),