Skip to content

Commit bab9071

Browse files
committed
Adjust Cargo.toml, README and some codes.
1 parent e2c28de commit bab9071

File tree

9 files changed

+13
-41
lines changed

9 files changed

+13
-41
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ cargo generate --git https://github.com/jmjoy/phper-ext-skel.git
2222

2323
## Notice
2424

25-
Now the library don't support `ZTS`, the template in use `thread_local` instead.
25+
Now the library don't support `ZTS`, the template is using `thread_local!` instead.
2626

phper-macros/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ name = "phper-macros"
33
version = "0.1.0"
44
authors = ["__JM_Joy__ <918734043@qq.com>"]
55
edition = "2018"
6-
description = "PHP binding."
6+
description = "The proc-macros for phper crate."
7+
repository = "https://github.com/jmjoy/phper.git"
78
license-file = "../LICENSE"
8-
keywords = ["php", "binding"]
9+
keywords = ["php"]
910

1011
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1112

phper-sys/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[package]
22
name = "phper-sys"
3-
version = "0.0.1"
3+
version = "0.1.0"
44
authors = ["__JM_Joy__ <918734043@qq.com>"]
55
edition = "2018"
6-
description = "PHP binding."
6+
description = "Low level PHP binding for Rust."
7+
repository = "https://github.com/jmjoy/phper.git"
78
license-file = "../LICENSE"
89
readme = "README.md"
910
keywords = ["php", "binding"]

phper-sys/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# PHPer
1+
# phper-sys
22

3-
PHP binding for Rust.
3+
Low level PHP binding for Rust.

phper/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ name = "phper"
33
version = "0.1.0"
44
authors = ["__JM_Joy__ <918734043@qq.com>"]
55
edition = "2018"
6-
description = "PHP binding."
6+
description = "A library that allows us to write PHP extensions using pure Rust and using safe Rust whenever possible."
7+
repository = "https://github.com/jmjoy/phper.git"
78
license-file = "../LICENSE"
8-
readme = "README.md"
9-
keywords = ["php", "binding"]
9+
readme = "../README.md"
10+
keywords = ["php", "binding", "extension"]
1011

1112
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1213

phper/README.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

phper/src/alloc.rs

Lines changed: 0 additions & 17 deletions
This file was deleted.

phper/src/context.rs

Lines changed: 0 additions & 9 deletions
This file was deleted.

phper/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
extern crate phper_macros;
22

3-
pub mod alloc;
4-
pub mod context;
53
mod macros;
64

75
pub use phper_macros::*;

0 commit comments

Comments
 (0)