create frameowrk crate

This commit is contained in:
Michael Zhang 2021-01-10 14:14:39 -06:00
parent 695fcd5d85
commit a8aefd734b
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
4 changed files with 14 additions and 0 deletions

4
Cargo.lock generated
View file

@ -639,6 +639,10 @@ version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "framework"
version = "0.1.0"
[[package]] [[package]]
name = "fuchsia-cprng" name = "fuchsia-cprng"
version = "0.1.1" version = "0.1.1"

View file

@ -10,6 +10,7 @@ debug = true
[workspace] [workspace]
members = [ members = [
"bass-sys", "bass-sys",
"framework",
] ]
[dependencies] [dependencies]

9
framework/Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "framework"
version = "0.1.0"
authors = ["Michael Zhang <mail@mzhang.io>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

0
framework/src/lib.rs Normal file
View file