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 842 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
22
23
  1. # Ultralytics YOLO 🚀, AGPL-3.0 license
  2. [package]
  3. name = "yolov8-rs"
  4. version = "0.1.0"
  5. edition = "2021"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. clap = { version = "4.2.4", features = ["derive"] }
  9. image = { version = "0.24.7", default-features = false, features = ["jpeg", "png", "webp-encoder"] }
  10. imageproc = { version = "0.23.0", default-features = false }
  11. ndarray = { version = "0.15.6" }
  12. ort = { version = "1.16.3", default-features = false, features = ["load-dynamic", "copy-dylibs", "half"] }
  13. rusttype = { version = "0.9", default-features = false }
  14. anyhow = { version = "1.0.75" }
  15. regex = { version = "1.5.4" }
  16. rand = { version = "0.8.5" }
  17. chrono = { version = "0.4.30" }
  18. half = { version = "2.3.1" }
  19. dirs = { version = "5.0.1" }
  20. ureq = { version = "2.9.1" }
Tip!

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

Comments

Loading...