sdroege / rtsp-server

RTSP Server Library
Mozilla Public License 2.0
14 stars 2 forks source link

Cargo Dependency: rtsp-types default branch #31

Closed maxlueerprivate closed 1 year ago

maxlueerprivate commented 1 year ago

I tried to build the rtsp-server with an older cargo version, but it fails because the default branch of the dependency rtsp-types was changed to 'main'. In older Cargo Versions, Cargo tries to pull repos with the default branch master which does not exist anymore.

This can easily be fixed by changing line 18 in Cargo.toml to:

rtsp-types = { git = "https://github.com/sdroege/rtps-types.git", branch = "main" }

I would be very pleased, if this will be fixed. Thx :)

sdroege commented 1 year ago

Ah sure, I didn't know about that cargo limitation. Do you want to send a PR for that small change?

maxlueerprivate commented 1 year ago

Ah sure, I didn't know about that cargo limitation. Do you want to send a PR for that small change?

Done :)