chore: add flowy-grid crate

This commit is contained in:
appflowy 2022-03-02 15:10:53 +08:00
parent 84afc50cd3
commit 5549cff177
5 changed files with 22 additions and 0 deletions

View File

@ -1038,6 +1038,10 @@ dependencies = [
"uuid",
]
[[package]]
name = "flowy-grid"
version = "0.1.0"
[[package]]
name = "flowy-net"
version = "0.1.0"

View File

@ -14,6 +14,7 @@ members = [
"flowy-block",
"flowy-error",
"flowy-sync",
"flowy-grid",
]
[profile.dev]

View File

@ -0,0 +1,8 @@
[package]
name = "flowy-grid"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}

View File

@ -77,6 +77,7 @@ fn crate_log_filter(level: String) -> String {
filters.push(format!("flowy_database={}", "info"));
filters.push(format!("flowy_net={}", "info"));
filters.push(format!("flowy_sync={}", "info"));
filters.push(format!("flowy_sync={}", "info"));
filters.join(",")
}