Skip to content

Commit

Permalink
rename module
Browse files Browse the repository at this point in the history
  • Loading branch information
bisho committed Nov 17, 2023
1 parent 5d05e92 commit e4e9ebf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "meta-socket"
name = "meta-memcache-socket"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "meta_socket"
name = "meta_memcache_socket"
crate-type = ["cdylib"]

[dependencies]
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["maturin>=1.3,<2.0"]
build-backend = "maturin"

[project]
name = "meta-socket"
name = "meta-memcache-socket"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ pub fn build_meta_arithmetic(
}

#[pymodule]
fn meta_socket(_py: Python, module: &PyModule) -> PyResult<()> {
fn meta_memcache_socket(_py: Python, module: &PyModule) -> PyResult<()> {
module.add_class::<ResponseFlags>()?;
module.add_class::<RequestFlags>()?;
module.add_function(wrap_pyfunction!(parse_header, module)?)?;
Expand Down

0 comments on commit e4e9ebf

Please sign in to comment.