Debian now provides `rust-xkbcommon` v0.5, so let's use this as the base version for our use-case. Part-of: <https://gitlab.gnome.org/World/Phosh/squeekboard/-/merge_requests/620>
		
			
				
	
	
		
			40 lines
		
	
	
		
			822 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			822 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Dependencies and tools which change based on build flags
 | 
						|
# For the newer-than-Byzantium config
 | 
						|
 | 
						|
bitflags = "1.3.*"
 | 
						|
clap = { version = "4.*", features=["std"], default-features = false }
 | 
						|
zbus = "1.9.*"
 | 
						|
zvariant = "2.10.*"
 | 
						|
# Newer versions seem to confuse the version of Cargo on Debian Bullseye
 | 
						|
zvariant_derive = "2.10.*"
 | 
						|
xkbcommon = { version = "0.5.*", features = ["wayland"] }
 | 
						|
 | 
						|
[dependencies.cairo-rs]
 | 
						|
version = "0.18.*"
 | 
						|
 | 
						|
[dependencies.cairo-sys-rs]
 | 
						|
version = "0.18.*"
 | 
						|
 | 
						|
[dependencies.gdk]
 | 
						|
version = "0.18.*"
 | 
						|
 | 
						|
[dependencies.gio]
 | 
						|
version = "0.18.*"
 | 
						|
features = ["v2_58"]
 | 
						|
 | 
						|
[dependencies.glib]
 | 
						|
version = "0.18.*"
 | 
						|
features = ["v2_58"]
 | 
						|
 | 
						|
[dependencies.glib-sys]
 | 
						|
version = "0.18.*"
 | 
						|
features = ["v2_58"]
 | 
						|
 | 
						|
[dependencies.gtk]
 | 
						|
version = "0.18.*"
 | 
						|
features = ["v3_24"]
 | 
						|
 | 
						|
[dependencies.gtk-sys]
 | 
						|
version = "0.18.*"
 | 
						|
features = ["v3_24"]
 |