Skip to content

Commit

Permalink
feat: rename rustlib to crates
Browse files Browse the repository at this point in the history
  • Loading branch information
evmckinney9 committed Mar 31, 2024
1 parent 9e26007 commit ec376fc
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 11 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include Cargo.toml
recursive-include rustlib *.rs
recursive-include crates *.rs
recursive-include src *
File renamed without changes.
2 changes: 1 addition & 1 deletion rustlib/Cargo.toml → crates/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "rustlib"
name = "crates"
version = "0.1.0"

[lib]
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
//mod.rs
pub mod basic_math;
pub mod basic_string;
1 change: 0 additions & 1 deletion rustlib/src/lib.rs → crates/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use pyo3::prelude::*;

#[pymodule]
fn quippers(_py: Python, m: &PyModule) -> PyResult<()> {
m.add_function(wrap_pyfunction!(basic_string::concat_in_rust, m)?)?;
m.add_function(wrap_pyfunction!(basic_math::add_in_rust, m)?)?;
m.add_function(wrap_pyfunction!(basic_math::subtract_in_rust, m)?)?;

Expand Down
7 changes: 0 additions & 7 deletions rustlib/src/basic_functions/basic_string.rs

This file was deleted.

0 comments on commit ec376fc

Please sign in to comment.