mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-03 19:43:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "flowy-user"
 | 
						|
version = "0.1.0"
 | 
						|
edition = "2018"
 | 
						|
 | 
						|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 | 
						|
 | 
						|
[dependencies]
 | 
						|
flowy-user-data-model = { path = "../../../shared-lib/flowy-user-data-model" }
 | 
						|
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
 | 
						|
flowy-database = { path = "../flowy-database" }
 | 
						|
flowy-error = { path = "../flowy-error", features = ["db", "http_server"] }
 | 
						|
 | 
						|
lib-infra = { path = "../../../shared-lib/lib-infra" }
 | 
						|
dart-notify = { path = "../dart-notify" }
 | 
						|
lib-dispatch = { path = "../lib-dispatch" }
 | 
						|
 | 
						|
tracing = { version = "0.1", features = ["log"] }
 | 
						|
bytes = "1.0"
 | 
						|
serde = { version = "1.0", features = ["derive"] }
 | 
						|
serde_json = {version = "1.0"}
 | 
						|
log = "0.4.14"
 | 
						|
protobuf = {version = "2.18.0"}
 | 
						|
lazy_static = "1.4.0"
 | 
						|
diesel = {version = "1.4.8", features = ["sqlite"]}
 | 
						|
diesel_derives = {version = "1.4.1", features = ["sqlite"]}
 | 
						|
once_cell = "1.7.2"
 | 
						|
parking_lot = "0.11"
 | 
						|
strum = "0.21"
 | 
						|
strum_macros = "0.21"
 | 
						|
tokio = { version = "1", features = ["rt"] }
 | 
						|
 | 
						|
 | 
						|
[dev-dependencies]
 | 
						|
flowy-test = { path = "../flowy-test" }
 | 
						|
futures = "0.3.15"
 | 
						|
nanoid = "0.4.0"
 | 
						|
 | 
						|
[features]
 | 
						|
dart = ["lib-infra/dart"]
 | 
						|
 | 
						|
[build-dependencies]
 | 
						|
lib-infra = { path = "../../../shared-lib/lib-infra", features = ["protobuf_file_gen"] } |