How do I enable a compiler plugin from cargo's command line?

I wrote a small compiler plugin, say "foo". If I want to use the compiler plugin "foo" to compile the crate "bar", I add these lines in the main.rs of the crate "bar":
#![feature(plugin)]
#![plugin(foo)]

Is there a way to compile the crate bar with my plugin enabled without modifying the sources?