Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Cargo.toml 796 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  1. [package]
  2. name = "yolov8-rs"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. clap = { version = "4.2.4", features = ["derive"] }
  8. image = { version = "0.24.7", default-features = false, features = ["jpeg", "png", "webp-encoder"] }
  9. imageproc = { version = "0.23.0", default-features = false }
  10. ndarray = { version = "0.15.6" }
  11. ort = {version = "1.16.3", default-features = false, features = ["load-dynamic", "copy-dylibs", "half"]}
  12. rusttype = { version = "0.9", default-features = false }
  13. anyhow = { version = "1.0.75"}
  14. regex = { version = "1.5.4" }
  15. rand = { version ="0.8.5" }
  16. chrono = { version = "0.4.30" }
  17. half = { version = "2.3.1" }
  18. dirs = { version = "5.0.1" }
  19. ureq = { version = "2.9.1" }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...