/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "RePong"
 3  version = "0.1.0"
 4  edition = "2021"
 5  
 6  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 7  
 8  [dependencies]
 9  libremarkable = "*"
10  evdev = "^0.12" # fixes [...] expected `u64`, found `u32` [...]
11  funty = "1.1.0" #see: https://stackoverflow.com/questions/66202192/cant-compile-bitvec-0-19-4-multiple-bits-found
12  rand = "*"
13  time = "0.3.19"
14  
15  cgmath = "*"
16  
17  tokio = { version = "1", features = ["full"] }
18  
19  [profile.release]
20  debug = true
21  
22  [[example]]
23  name = "main"
24  path = "src/main.rs"
25  crate-type = ["bin"]