diff --git a/Cargo.lock b/Cargo.lock index 51415f9..bafd535 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -639,6 +639,10 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" +[[package]] +name = "framework" +version = "0.1.0" + [[package]] name = "fuchsia-cprng" version = "0.1.1" diff --git a/Cargo.toml b/Cargo.toml index 432726c..a6dec7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,7 @@ debug = true [workspace] members = [ "bass-sys", + "framework", ] [dependencies] diff --git a/framework/Cargo.toml b/framework/Cargo.toml new file mode 100644 index 0000000..2901370 --- /dev/null +++ b/framework/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "framework" +version = "0.1.0" +authors = ["Michael Zhang "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/framework/src/lib.rs b/framework/src/lib.rs new file mode 100644 index 0000000..e69de29