About the only thing you can do to improve on Newton-Raphson is to abandon its habit of forgetting every point you've calculated except the last.
For example, instead of assuming at each step that the function is linear and using that assumption to find the next estimate of the root, you find $x_0$ by guessing, $x_1$ by assuming the function is linear and using the values $f(x_0), f'(x_0)$, $x_2$ by assuming the function is a cubic and using $f(x_0), f(x_1), f'(x_0), f'(x_1)$, then find $x_3$ by assuming the function is a quintic, etc.
But this gives only very minor improvements in convergence speed. It has been too long for me to remember, but I think converge is still quadratic in the limit.
Alternatively, instead of polynomials, you can use other families of functions in hopes of improved performance. Polynomials are not always that great at interpolating or extrapolating. For example Brent's Method, a widely-used root-finding algorithm when you don't even have derivatives, relies on inverse quadratic functions based on three previous values of the function.