Skip to content

Commit f95977c

Browse files
committed
Allow uuid = "1.0.0" as well
Fixes #129.
1 parent 763a1d9 commit f95977c

13 files changed

Lines changed: 14 additions & 14 deletions

File tree

gamenet/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ libtw2-common = { path = "../../common" }
1313
libtw2-packer = { path = "../../packer/", features = ["uuid"] }
1414
serde = "1.0.23"
1515
serde_derive = "1.0.7"
16-
uuid = { version = "0.8.1", features = ["serde"] }
16+
uuid = { version = ">=0.8.1,<2.0.0", features = ["serde"] }
1717
warn = ">=0.1.1,<0.3.0"
1818
zerocopy = "0.7.32"

gamenet/ddnet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ libtw2-common = { path = "../../common/" }
1313
libtw2-gamenet-common = { path = "../common/" }
1414
libtw2-gamenet-snap = { path = "../snap/" }
1515
libtw2-packer = { path = "../../packer/", features = ["uuid"] }
16-
uuid = "0.8.1"
16+
uuid = ">=0.8.1,<2.0.0"
1717
warn = ">=0.1.1,<0.3.0"

gamenet/spec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ rust-version = "1.63.0"
1010
libtw2-gamenet-common = { path = "../common/" }
1111
serde = "1.0.23"
1212
serde_derive = "1.0.7"
13-
uuid = { version = "0.8.1", features = ["serde"] }
13+
uuid = { version = ">=0.8.1,<2.0.0", features = ["serde"] }

gamenet/teeworlds-0.5/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ libtw2-common = { path = "../../common/" }
1313
libtw2-gamenet-common = { path = "../common/" }
1414
libtw2-gamenet-snap = { path = "../snap/" }
1515
libtw2-packer = { path = "../../packer/", features = ["uuid"] }
16-
uuid = "0.8.1"
16+
uuid = ">=0.8.1,<2.0.0"
1717
warn = ">=0.1.1,<0.3.0"

gamenet/teeworlds-0.6/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ libtw2-common = { path = "../../common/" }
1313
libtw2-gamenet-common = { path = "../common/" }
1414
libtw2-gamenet-snap = { path = "../snap/" }
1515
libtw2-packer = { path = "../../packer/", features = ["uuid"] }
16-
uuid = "0.8.1"
16+
uuid = ">=0.8.1,<2.0.0"
1717
warn = ">=0.1.1,<0.3.0"

gamenet/teeworlds-0.7/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ libtw2-common = { path = "../../common/" }
1313
libtw2-gamenet-common = { path = "../common/" }
1414
libtw2-gamenet-snap = { path = "../snap/" }
1515
libtw2-packer = { path = "../../packer/", features = ["uuid"] }
16-
uuid = "0.8.1"
16+
uuid = ">=0.8.1,<2.0.0"
1717
warn = ">=0.1.1,<0.3.0"

packer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ rust-version = "1.63.0"
1010
arrayvec = "0.5.2"
1111
buffer = "0.1.9"
1212
libtw2-common = { path = "../common/" }
13-
uuid = { version = "0.8.1", optional = true }
13+
uuid = { version = ">=0.8.1,<2.0.0", optional = true }
1414
warn = ">=0.1.1,<0.3.0"
1515

1616
[dev-dependencies]

register/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ serde = { version = "1.0.23", features = ["rc"] }
1717
serde_derive = "1.0.27"
1818
serde_json = "1.0.7"
1919
tokio = { version = "1.38.1", features = ["macros", "time"] }
20-
uuid = { version = "0.8.1", features = ["v4"] }
20+
uuid = { version = ">=0.8.1,<2.0.0", features = ["v4"] }

snapshot/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ libtw2-common = { path = "../common/" }
1212
libtw2-gamenet-common = { path = "../gamenet/common/" }
1313
libtw2-gamenet-snap = { path = "../gamenet/snap/" }
1414
libtw2-packer = { path = "../packer/" }
15-
uuid = "0.8.1"
15+
uuid = ">=0.8.1,<2.0.0"
1616
vec_map = "0.8.0"
1717
warn = ">=0.1.1,<0.3.0"
1818

stats-browser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ serde = "1.0.23"
2525
serde_derive = "1.0.27"
2626
serde_json = "1.0.7"
2727
time = "0.1.34"
28-
uuid = { version = "0.8.1", features = ["serde", "v4", "v5"] }
28+
uuid = { version = ">=0.8.1,<2.0.0", features = ["serde", "v4", "v5"] }
2929
zerocopy = "0.7.32"

0 commit comments

Comments
 (0)