tor-keymgr: Use collect_tuple in TimePeriod::from_slug.
This fixes a bug in TimePeriod::from_slug
. Previously, this impl would split the slug
by _
, attempting to collect the parts into an ArrayVec
of length
3, which is wrong, because the collect()
panics if there are more
than 3 parts.