AppFlowy/frontend/rust-lib/flowy-core/Cargo.toml

77 lines
2.2 KiB
TOML
Raw Normal View History

2023-03-03 12:38:31 +00:00
[package]
name = "flowy-core"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lib-dispatch = { workspace = true }
lib-log = { workspace = true }
flowy-user = { workspace = true }
flowy-user-deps = { workspace = true }
flowy-folder = { workspace = true }
flowy-folder-deps = { workspace = true }
flowy-database2 = { workspace = true }
flowy-database-deps = { workspace = true }
flowy-sqlite = { workspace = true }
flowy-document = { workspace = true }
flowy-document-deps = { workspace = true }
flowy-error = { workspace = true }
flowy-task = { workspace = true }
flowy-server = { workspace = true }
flowy-server-config = { workspace = true }
flowy-config = { workspace = true }
2023-10-02 07:12:24 +00:00
flowy-date = { workspace = true }
collab-integrate = { workspace = true, features = ["supabase_integrate", "appflowy_cloud_integrate", "snapshot_plugin"] }
collab-entity = { version = "0.1.0" }
collab-plugins = { version = "0.1.0" }
collab = { version = "0.1.0" }
diesel.workspace = true
uuid.workspace = true
flowy-storage = { workspace = true }
client-api = { version = "0.1.0", features = ["collab-sync", "template"] }
2023-03-03 12:38:31 +00:00
tracing.workspace = true
2023-03-03 12:38:31 +00:00
futures-core = { version = "0.3", default-features = false }
bytes.workspace = true
tokio = { workspace = true, features = ["full"] }
tokio-stream = { workspace = true, features = ["sync"]}
console-subscriber = { version = "0.2", optional = true }
parking_lot.workspace = true
anyhow.workspace = true
base64 = "0.21.5"
2023-03-03 12:38:31 +00:00
lib-infra = { workspace = true }
serde.workspace = true
serde_json.workspace = true
serde_repr.workspace = true
futures.workspace = true
walkdir = "2.4.0"
2023-03-03 12:38:31 +00:00
[features]
default = ["rev-sqlite"]
profiling = ["console-subscriber", "tokio/tracing"]
feat: integrate new editor (#2536) * feat: update editor * feat: integrate new editor * feat: integrate the document2 into folder2 * feat: integrate the new editor * chore: cargo fix * chore: active document feature for flowy-error * feat: convert the editor action to collab action * feat: migrate the grid and board * feat: migrate the callout block * feat: migrate the divider * chore: migrate the callout and math equation * feat: migrate the code block * feat: add shift + enter command in code block * feat: support tab and shift+tab in code block * fix: cursor error after inserting divider * feat: migrate the grid and board * feat: migrate the emoji picker * feat: migrate openai * feat: integrate floating toolbar * feat: migrate the smart editor * feat: migrate the cover * feat: add option block action * chore: implement block selection and delete option * feat: support background color * feat: dismiss color picker afer setting color * feat: migrate the cover block * feat: resize the font * chore: cutomsize the padding * chore: wrap the option button with ignore widget * feat: customize the heading style * chore: optimize the divider line height * fix: the option button can't dismiss * ci: rust test * chore: flutter analyze * fix: code block selection * fix: dismiss the emoji picker after selecting one * chore: optimize the transaction adapter * fix: can't save the new content * feat: show export page when some errors happen * feat: implement get_view_data for document --------- Co-authored-by: nathan <nathan@appflowy.io>
2023-05-16 06:58:24 +00:00
http_sync = []
native_sync = []
2023-03-03 12:38:31 +00:00
use_bunyan = ["lib-log/use_bunyan"]
dart = [
"flowy-user/dart",
2023-10-02 07:12:24 +00:00
"flowy-date/dart",
"flowy-folder/dart",
"flowy-database2/dart",
"flowy-document/dart",
"flowy-config/dart",
2023-03-03 12:38:31 +00:00
]
ts = [
"flowy-user/ts",
2023-10-02 07:12:24 +00:00
"flowy-date/ts",
"flowy-folder/ts",
"flowy-database2/ts",
"flowy-document/ts",
"flowy-config/ts",
2023-03-03 12:38:31 +00:00
]
2023-10-02 07:12:24 +00:00
rev-sqlite = ["flowy-user/rev-sqlite"]
2023-03-03 12:38:31 +00:00
openssl_vendored = ["flowy-sqlite/openssl_vendored"]
wasm_build = ["lib-dispatch/wasm_build"]