50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "clipboard"
 | 
						|
version = "0.1.0"
 | 
						|
edition = "2021"
 | 
						|
build = "build.rs"
 | 
						|
 | 
						|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 | 
						|
 | 
						|
[build-dependencies]
 | 
						|
cc = "1.0"
 | 
						|
 | 
						|
[features]
 | 
						|
default = []
 | 
						|
unix-file-copy-paste = [
 | 
						|
"dep:x11rb",
 | 
						|
"dep:x11-clipboard",
 | 
						|
"dep:rand",
 | 
						|
"dep:fuser",
 | 
						|
"dep:libc",
 | 
						|
"dep:dashmap",
 | 
						|
"dep:percent-encoding",
 | 
						|
"dep:utf16string",
 | 
						|
"dep:once_cell",
 | 
						|
"dep:cacao"
 | 
						|
]
 | 
						|
 | 
						|
[dependencies]
 | 
						|
thiserror = "1.0"
 | 
						|
lazy_static = "1.4"
 | 
						|
serde = "1.0"
 | 
						|
serde_derive = "1.0"
 | 
						|
hbb_common = { path = "../hbb_common" }
 | 
						|
parking_lot = {version = "0.12"}
 | 
						|
 | 
						|
[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies]
 | 
						|
rand = {version = "0.8", optional = true}
 | 
						|
fuser = {version = "0.13", optional = true}
 | 
						|
libc = {version = "0.2", optional = true}
 | 
						|
dashmap = {version ="5.5", optional = true}
 | 
						|
utf16string = {version = "0.2", optional = true}
 | 
						|
once_cell = {version = "1.18", optional = true}
 | 
						|
 | 
						|
[target.'cfg(target_os = "linux")'.dependencies]
 | 
						|
percent-encoding = {version  ="2.3", optional = true}
 | 
						|
x11-clipboard = {git="https://github.com/clslaid/x11-clipboard", branch = "feat/store-batch", optional = true}
 | 
						|
x11rb =  {version = "0.12", features = ["all-extensions"], optional = true}
 | 
						|
 | 
						|
[target.'cfg(target_os = "macos")'.dependencies]
 | 
						|
cacao = {git="https://github.com/clslaid/cacao", branch = "feat/set-file-urls", optional = true}
 |