mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 10:03:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "flowy-net"
 | |
| 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 = { path = "../lib-dispatch" }
 | |
| flowy-error = { path = "../flowy-error", features = ["collaboration", "http_server"] }
 | |
| flowy-derive = { path = "../../../shared-lib/flowy-derive" }
 | |
| flowy-sync = { path = "../../../shared-lib/flowy-sync"}
 | |
| flowy-folder-data-model = { path = "../../../shared-lib/flowy-folder-data-model"}
 | |
| flowy-folder = { path = "../flowy-folder" }
 | |
| flowy-user = { path = "../flowy-user" }
 | |
| flowy-document = { path = "../flowy-document" }
 | |
| lazy_static = "1.4.0"
 | |
| lib-infra = { path = "../../../shared-lib/lib-infra" }
 | |
| protobuf = {version = "2.18.0"}
 | |
| lib-ws = { path = "../../../shared-lib/lib-ws" }
 | |
| bytes = { version = "1.0" }
 | |
| anyhow = "1.0"
 | |
| tokio = {version = "1", features = ["sync"]}
 | |
| parking_lot = "0.11"
 | |
| strum = "0.21"
 | |
| strum_macros = "0.21"
 | |
| tracing = { version = "0.1", features = ["log"] }
 | |
| dashmap = "5"
 | |
| async-stream = "0.3.2"
 | |
| futures-util = "0.3.15"
 | |
| http-flowy = { git = "https://github.com/AppFlowy-IO/AppFlowy-Server", features = ["with_reqwest"] }
 | |
| serde-aux = "1.0.1"
 | |
| reqwest = "0.11"
 | |
| hyper = "0.14"
 | |
| config = { version = "0.10.1", default-features = false, features = ["yaml"] }
 | |
| log = "0.4.14"
 | |
| serde = { version = "1.0", features = ["derive"] }
 | |
| serde_json = "1.0"
 | |
| nanoid = "0.4.0"
 | |
| 
 | |
| [features]
 | |
| http_server = []
 | |
| dart = [
 | |
|     "lib-infra/dart",
 | |
|     "flowy-user/dart",
 | |
|     "flowy-sync/dart",
 | |
|     "flowy-error/dart",
 | |
|     "flowy-folder-data-model/dart"
 | |
| ]
 | |
| 
 | |
| [build-dependencies]
 | |
| lib-infra = { path = "../../../shared-lib/lib-infra", features = ["protobuf_file_gen"] } | 
