Skip to content

Commit 101f2f7

Browse files
authored
chore: revert to 2018 edition (#847)
Fixes #843
1 parent c62f382 commit 101f2f7

File tree

23 files changed

+23
-23
lines changed

23 files changed

+23
-23
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ the generated code.
4141

4242
### Rust Version
4343

44-
`tonic` currently works on Rust `1.56` and above as it requires support for the 2021 edition.
44+
`tonic` currently works on Rust `1.56` and above as it requires support for the 2018 edition.
4545

4646
```bash
4747
$ rustup update

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
authors = ["Lucio Franco <luciofranco14@gmail.com>"]
3-
edition = "2021"
3+
edition = "2018"
44
license = "MIT"
55
name = "examples"
66
publish = false

interop/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
authors = ["Lucio Franco <luciofranco14@gmail.com>"]
3-
edition = "2021"
3+
edition = "2018"
44
license = "MIT"
55
name = "interop"
66
publish = false

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
edition = "2021"
1+
edition = "2018"

tests/ambiguous_methods/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
authors = ["Yonathan Randolph <yonathan@gmail.com>"]
3-
edition = "2021"
3+
edition = "2018"
44
license = "MIT"
55
name = "ambiguous_methods"
66
publish = false

tests/compression/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
authors = ["Lucio Franco <luciofranco14@gmail.com>"]
3-
edition = "2021"
3+
edition = "2018"
44
license = "MIT"
55
name = "compression"
66
publish = false

tests/extern_path/my_application/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
authors = ["Danny Hua <danny@42layers.io>"]
3-
edition = "2021"
3+
edition = "2018"
44
license = "MIT"
55
name = "my_application"
66
publish = false

tests/extern_path/uuid/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
authors = ["Danny Hua <danny@42layers.io>"]
3-
edition = "2021"
3+
edition = "2018"
44
license = "MIT"
55
name = "uuid1"
66
publish = false

tests/included_service/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
authors = ["Lucio Franco <luciofranco14@gmail.com>"]
3-
edition = "2021"
3+
edition = "2018"
44
license = "MIT"
55
name = "included_service"
66
publish = false

tests/integration_tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
authors = ["Lucio Franco <luciofranco14@gmail.com>"]
3-
edition = "2021"
3+
edition = "2018"
44
license = "MIT"
55
name = "integration-tests"
66
publish = false

0 commit comments

Comments
 (0)