mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: add flowy-grid crate
This commit is contained in:
parent
84afc50cd3
commit
5549cff177
4
frontend/rust-lib/Cargo.lock
generated
4
frontend/rust-lib/Cargo.lock
generated
@ -1038,6 +1038,10 @@ dependencies = [
|
||||
"uuid",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "flowy-grid"
|
||||
version = "0.1.0"
|
||||
|
||||
[[package]]
|
||||
name = "flowy-net"
|
||||
version = "0.1.0"
|
||||
|
@ -14,6 +14,7 @@ members = [
|
||||
"flowy-block",
|
||||
"flowy-error",
|
||||
"flowy-sync",
|
||||
"flowy-grid",
|
||||
]
|
||||
|
||||
[profile.dev]
|
||||
|
8
frontend/rust-lib/flowy-grid/Cargo.toml
Normal file
8
frontend/rust-lib/flowy-grid/Cargo.toml
Normal 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]
|
8
frontend/rust-lib/flowy-grid/src/lib.rs
Normal file
8
frontend/rust-lib/flowy-grid/src/lib.rs
Normal file
@ -0,0 +1,8 @@
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
let result = 2 + 2;
|
||||
assert_eq!(result, 4);
|
||||
}
|
||||
}
|
@ -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(",")
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user