There's a bug where EnderZoo doesn't recognise the Vajra as a shovel. They suggested adding this to the item's code:
@Override
public Set<String> getToolClasses(ItemStack stack) {
Set<String> set = Sets.newHashSet("pickaxe");
set.add("shovel");
set.add("axe");
return set;
}