soenkehahn / cradle

Rust library for running child processes
Creative Commons Zero v1.0 Universal
38 stars 5 forks source link

Derive Copy for input::LogCommand #200

Closed soenkehahn closed 2 years ago

soenkehahn commented 2 years ago

I ran into an ownership error message with LogCommand in another project. It can be easily worked around by using &LogCommand, but I thought deriving Copy also is a good idea.

@casey: Do you know whether this would be a minor or a major version bump? (I wouldn't necessarily cut a release for this though.)

casey commented 2 years ago

I think this is just a minor version bump, since it's like adding a function.

LGTM!