This PR lowers the dependency version of fastly crate to ^0.9.0 and removes Cargo.lock.
In a starter kit, we should declare a version of the SDK that has the features needed (^0.9 in this case), as well as dependencies. And by not including Cargo.lock, the user always gets the newest compatible version at the time their project is initialized, and a new lock file that they would commit to their new project's code repo.
This PR lowers the dependency version of fastly crate to
^0.9.0
and removesCargo.lock
.In a starter kit, we should declare a version of the SDK that has the features needed (^0.9 in this case), as well as dependencies. And by not including
Cargo.lock
, the user always gets the newest compatible version at the time their project is initialized, and a new lock file that they would commit to their new project's code repo.