Skip to content

Commit bd49d1a

Browse files
authored
Merge pull request #26 from jmjoy/0.3.x-dev
2 parents 6246ace + 3205bf0 commit bd49d1a

File tree

13 files changed

+28
-18
lines changed

13 files changed

+28
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A library that allows us to write PHP extensions using pure Rust and using safe
1414

1515
### Necessary
1616

17-
- **rust** 1.54 or later
17+
- **rust** 1.56 or later
1818
- **libclang** 9.0 or later
1919
- **php** 7.0 or later
2020

examples/hello/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
name = "hello"
33
version = "0.0.0"
44
authors = ["jmjoy <918734043@qq.com>"]
5-
edition = "2018"
5+
edition = "2021"
6+
rust-version = "1.56"
67
publish = false
78
license = "Unlicense"
89

examples/http-client/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
name = "http-client"
33
version = "0.0.0"
44
authors = ["jmjoy <918734043@qq.com>"]
5-
edition = "2018"
5+
edition = "2021"
6+
rust-version = "1.56"
67
publish = false
78
license = "Unlicense"
89

examples/http-server/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
name = "http-server"
33
version = "0.0.0"
44
authors = ["jmjoy <918734043@qq.com>"]
5-
edition = "2018"
5+
edition = "2021"
6+
rust-version = "1.56"
67
publish = false
78
license = "Unlicense"
89

examples/logging/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
name = "logging"
33
version = "0.0.0"
44
authors = ["jmjoy <918734043@qq.com>"]
5-
edition = "2018"
5+
edition = "2021"
6+
rust-version = "1.56"
67
publish = false
78
license = "Unlicense"
89

phper-alloc/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
name = "phper-alloc"
33
version = "0.3.0"
44
authors = ["jmjoy <918734043@qq.com>"]
5-
edition = "2018"
5+
edition = "2021"
6+
rust-version = "1.56"
67
description = "Alloc related items for phper crate."
78
repository = "https://github.com/jmjoy/phper.git"
89
license = "Unlicense"

phper-build/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
name = "phper-build"
33
version = "0.3.0"
44
authors = ["jmjoy <918734043@qq.com>"]
5-
edition = "2018"
5+
edition = "2021"
6+
rust-version = "1.56"
67
description = "Generates stubs for project using phper."
78
repository = "https://github.com/jmjoy/phper.git"
89
license = "Unlicense"

phper-macros/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
name = "phper-macros"
33
version = "0.3.0"
44
authors = ["jmjoy <918734043@qq.com>"]
5-
edition = "2018"
5+
edition = "2021"
6+
rust-version = "1.56"
67
description = "The proc-macros for phper crate."
78
repository = "https://github.com/jmjoy/phper.git"
89
license = "Unlicense"

phper-sys/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
name = "phper-sys"
33
version = "0.3.0"
44
authors = ["jmjoy <918734043@qq.com>"]
5-
edition = "2018"
5+
edition = "2021"
6+
rust-version = "1.56"
67
description = "Low level PHP binding for Rust."
78
repository = "https://github.com/jmjoy/phper.git"
89
license = "Unlicense"

phper-test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
name = "phper-test"
33
version = "0.3.0"
44
authors = ["jmjoy <918734043@qq.com>"]
5-
edition = "2018"
5+
edition = "2021"
6+
rust-version = "1.56"
67
description = "PHPer testing utilities."
78
repository = "https://github.com/jmjoy/phper.git"
89
license = "Unlicense"
@@ -24,4 +25,3 @@ tokio = { version = "1.7.0", optional = true }
2425
[package.metadata.docs.rs]
2526
rustdoc-args = ["--cfg", "docsrs"]
2627
all-features = true
27-

0 commit comments

Comments
 (0)