refactored player
This commit is contained in:
parent
6cc927031a
commit
925652acdd
11 changed files with 1102 additions and 107 deletions
15
Cargo.toml
15
Cargo.toml
|
|
@ -3,11 +3,16 @@ name = "rustypipe"
|
|||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[workspace]
|
||||
members = [".", "cli"]
|
||||
|
||||
[features]
|
||||
default = ["default-tls"]
|
||||
|
||||
default-tls = ["reqwest/default-tls"]
|
||||
rustls-tls-webpki-roots = ["reqwest/rustls-tls-webpki-roots"]
|
||||
rustls-tls-native-roots = ["reqwest/rustls-tls-native-roots"]
|
||||
|
||||
[dependencies]
|
||||
# quick-js = "0.4.1"
|
||||
quick-js = { path = "../quickjs-rs" }
|
||||
|
|
@ -17,10 +22,11 @@ anyhow = "1.0"
|
|||
thiserror = "1.0.31"
|
||||
url = "2.2.2"
|
||||
log = "0.4.17"
|
||||
reqwest = {version = "0.11.11", default-features = false, features = ["json", "gzip", "brotli", "stream", "rustls-tls-native-roots"]}
|
||||
reqwest = {version = "0.11.11", default-features = false, features = ["json", "gzip", "brotli", "stream"]}
|
||||
tokio = {version = "1.20.0", features = ["macros", "fs", "process"]}
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0.82"
|
||||
serde_yaml = "0.9.11"
|
||||
serde_with = {version = "2.0.0", features = ["json"] }
|
||||
rand = "0.8.5"
|
||||
async-trait = "0.1.56"
|
||||
|
|
@ -31,13 +37,12 @@ indicatif = "0.17.0"
|
|||
filenamify = "0.1.0"
|
||||
ress = "0.11.4"
|
||||
phf = "0.11.1"
|
||||
serde_yaml = "0.9.11"
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.9.0"
|
||||
test-log = "0.2.11"
|
||||
rstest = "0.15.0"
|
||||
temp_testdir = "0.2.3"
|
||||
insta = {version = "1.17.1", features = ["redactions"]}
|
||||
insta = {version = "1.17.1", features = ["yaml", "redactions"]}
|
||||
velcro = "0.5.3"
|
||||
phf_codegen = "0.11.1"
|
||||
|
|
|
|||
Reference in a new issue