51 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "bms"
 | 
						|
version = "0.1.0"
 | 
						|
edition = "2021"
 | 
						|
 | 
						|
[dependencies]
 | 
						|
ch32-hal = { git = "https://github.com/empirephoenix/ch32-hal.git", features = [
 | 
						|
    "ch32v203c8t6",
 | 
						|
    "memory-x",
 | 
						|
    "embassy",
 | 
						|
    "rt",
 | 
						|
    "time-driver-tim2",
 | 
						|
 | 
						|
], default-features = false }
 | 
						|
 | 
						|
 | 
						|
 | 
						|
embassy-executor = { version = "0.7.0", features = [
 | 
						|
    # "arch-riscv32",
 | 
						|
    "arch-spin", # TODO: Required for USBD to connect properl
 | 
						|
    "executor-thread",
 | 
						|
] }
 | 
						|
 | 
						|
#embassy-time = { version = "0.3.2" }
 | 
						|
embassy-usb = { version = "0.3.0" }
 | 
						|
embassy-futures = { version = "0.1.0" }
 | 
						|
embassy-sync = { version = "0.6.0" }
 | 
						|
embedded-can = "0.4.1"
 | 
						|
embedded-alloc = { version = "0.6.0", default-features = false, features = ["llff"] }
 | 
						|
 | 
						|
# This is okay because we should automatically use whatever ch32-hal uses
 | 
						|
qingke-rt = "*"
 | 
						|
qingke = "*"
 | 
						|
 | 
						|
panic-halt = "1.0"
 | 
						|
 | 
						|
 | 
						|
heapless = { version = "0.8.0", features = ["portable-atomic-critical-section"] }
 | 
						|
embassy-time = { version = "0.4.0" }
 | 
						|
static_cell = "2.1.1"
 | 
						|
 | 
						|
[profile.dev]
 | 
						|
#lto = true
 | 
						|
opt-level = 1
 | 
						|
 | 
						|
[profile.release]
 | 
						|
strip = true   # symbols are not flashed to the microcontroller, so don't strip them.
 | 
						|
lto = true
 | 
						|
debug = false
 | 
						|
opt-level = "z" # Optimize for size.
 |