mgmt+tools: add missing includes

Change-Id: I53aeaa6b223b616c170697662d02a028cea67400
diff --git a/core/common.hpp b/core/common.hpp
index aff3ab2..0e47227 100644
--- a/core/common.hpp
+++ b/core/common.hpp
@@ -1,6 +1,6 @@
 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
 /*
- * Copyright (c) 2014-2022,  Regents of the University of California,
+ * Copyright (c) 2014-2023,  Regents of the University of California,
  *                           Arizona Board of Regents,
  *                           Colorado State University,
  *                           University Pierre & Marie Curie, Sorbonne University,
@@ -78,8 +78,6 @@
 
 using std::size_t;
 
-using boost::noncopyable;
-
 using std::shared_ptr;
 using std::unique_ptr;
 using std::weak_ptr;
@@ -90,12 +88,13 @@
 using std::dynamic_pointer_cast;
 using std::const_pointer_cast;
 
+using std::to_string;
 using namespace std::string_literals;
 using namespace std::string_view_literals;
 
-using ndn::span;
-using ndn::to_string;
+using boost::noncopyable;
 
+using ndn::span;
 using ndn::Block;
 using ndn::Data;
 using ndn::FaceUri;
@@ -116,6 +115,7 @@
 namespace signal = ndn::util::signal;
 namespace time = ndn::time;
 using namespace ndn::time_literals;
+
 using ndn::operator""_block;
 
 } // namespace nfd