I have a table defined as below:
\begin{tabular}{|c|c|c|}
\hline
\textbf{Library} & \textbf{Problem Type} & \textbf{Dependencies}\\
\hline
OSI & Abstract class for other libraries & CoinUtils, BuildTools\\
\hline
CLP & Linear Programming (LP) & Osi, CoinUtils, BuildTools\\
\hline
CBC & Mixed Integer LP & Cgl, Clp, Osi, CoinUtils, BuildTools\\
\hline
Symphony & Mixed Integer LP & Cgl, Clp, Osi, CoinUtils, BuildTools\\
\hline
Ipopt & Nonlinear programming (NLP) & BuildTools, Lapack, Blas, Mumps\\
\hline
Bonmin & Mixed Integer NLP & Ipopt, Cbc, Cgl, Clp, Osi, CoinUtils, BuildTools, Lapack, Blas, Mumps\\
\hline
\end{tabular}
The last last column does not fit in the the page for all rows because it is too big. How do alter it so that these cells take up multiple lines?

