diff options
Diffstat (limited to 'client/Cargo.toml')
-rw-r--r-- | client/Cargo.toml | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/client/Cargo.toml b/client/Cargo.toml index 5f14df4..1e58906 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -9,22 +9,22 @@ authors = [ license = "AGPL-3.0-only" [dependencies] -socket = { git = "https://github.com/heinrich5991/libtw2" } -datafile = { git = "https://github.com/heinrich5991/libtw2" } -map = { git = "https://github.com/heinrich5991/libtw2" } -net = { git = "https://github.com/heinrich5991/libtw2" } -common = { git = "https://github.com/heinrich5991/libtw2" } -event_loop = { git = "https://github.com/heinrich5991/libtw2" } -gamenet_teeworlds_0_5 = { git = "https://github.com/heinrich5991/libtw2", optional = true } -gamenet_teeworlds_0_6 = { git = "https://github.com/heinrich5991/libtw2", optional = true } -gamenet_teeworlds_0_7 = { git = "https://github.com/heinrich5991/libtw2", optional = true } -gamenet_ddnet = { git = "https://github.com/heinrich5991/libtw2", optional = true } -logger = { git = "https://github.com/heinrich5991/libtw2" } -packer = { git = "https://github.com/heinrich5991/libtw2" } -# snapshot = { git = "https://github.com/heinrich5991/libtw2" } +socket = { path = "../../libtw2/socket" } +datafile = { path = "../../libtw2/datafile" } +map = { path = "../../libtw2/map" } +net = { path = "../../libtw2/net" } +common = { path = "../../libtw2/common" } +event_loop = { path = "../../libtw2/event_loop" } +gamenet_teeworlds_0_5 = { path = "../../libtw2/gamenet/teeworlds-0.5", optional = true } +gamenet_teeworlds_0_6 = { path = "../../libtw2/gamenet/teeworlds-0.6", optional = true } +gamenet_teeworlds_0_7 = { path = "../../libtw2/gamenet/teeworlds-0.7", optional = true } +gamenet_ddnet = { path = "../../libtw2/gamenet/ddnet", optional = true } +logger = { path = "../../libtw2/logger" } +packer = { path = "../../libtw2/packer" } +# snapshot = { path = "../../libtw2/snapshot" } snapshot = { path = "../snapshot" } -ndarray = "0.9.1" +ndarray = "0.15.4" arrayvec = "0.5.2" clap = "2.31.2" hexdump = "0.1.1" |