mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
c0aef8f4fe
* fix: reset server url when using appflowy cloud the first time * refactor: set authenticator in frontend * chore: log version * chore: show hint when changing the server type * chore: bump version * chore: fix test * chore: bump collab
31 lines
944 B
TOML
31 lines
944 B
TOML
[package]
|
|
name = "af-user"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
af-persistence.workspace = true
|
|
lib-dispatch = { workspace = true }
|
|
flowy-derive = { workspace = true }
|
|
flowy-error = { workspace = true, features = ["impl_from_dispatch_error", "impl_from_collab_persistence"] }
|
|
flowy-user-pub = { workspace = true }
|
|
strum_macros = "0.25.2"
|
|
tracing.workspace = true
|
|
lib-infra = { workspace = true }
|
|
collab = { workspace = true, features = ["async-plugin"] }
|
|
collab-entity.workspace = true
|
|
collab-user.workspace = true
|
|
collab-integrate = { workspace = true }
|
|
protobuf.workspace = true
|
|
bytes.workspace = true
|
|
anyhow.workspace = true
|
|
wasm-bindgen-futures.workspace = true
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
|
|
[build-dependencies]
|
|
flowy-codegen = { workspace = true, features = ["ts"] }
|