odysee-dl

odysee.com channel content downloader
git clone https://git.ea.contact/odysee-dl
Log | Files | Refs | README

Cargo.toml (293B)


      1 [package]
      2 name = "odysee-dl"
      3 version = "0.1.0"
      4 edition = "2024"
      5 
      6 [profile.release]
      7 lto = true
      8 strip = "symbols"
      9 
     10 [lib]
     11 path = "src/lib/lib.rs"
     12 
     13 [[bin]]
     14 name = "odysee-dl-cli"
     15 path = "src/bin/cli/main.rs"
     16 
     17 [dependencies]
     18 serde_json = "1.0.149"
     19 ureq = { version = "3.3.0", features = ["json"] }