first commit
This commit is contained in:
commit
0cb536b42b
38 changed files with 9044 additions and 0 deletions
38
Cargo.toml
Normal file
38
Cargo.toml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
[package]
|
||||
name = "mpp-rs"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
|
||||
[dependencies]
|
||||
rustls = { version = "0.23.31", default-features = false, features = [
|
||||
"logging",
|
||||
"tls12",
|
||||
] }
|
||||
midiplayer_rs = { path = "./midiplayer_rs" }
|
||||
rustls-rustcrypto = "0.0.2-alpha"
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
serde_json = { version = "1.0.143", features=["raw_value"]}
|
||||
futures-util = "0.3.31"
|
||||
rand = "0.9.2"
|
||||
tokio = { version = "1.47.1", features = ["full", "tracing"] }
|
||||
tokio-tungstenite = { version = "*", features = ["rustls-tls-webpki-roots"] }
|
||||
chrono = "0.4.41"
|
||||
flume = "0.11.1"
|
||||
async-trait = "0.1.89"
|
||||
reqwest = { version = "0.12.23", default-features = false, features = [
|
||||
"rustls-tls-webpki-roots-no-provider",
|
||||
"http2",
|
||||
"charset",
|
||||
"blocking",
|
||||
] }
|
||||
tokio-console = "0.1"
|
||||
tracing-subscriber = "0.3.19"
|
||||
console-subscriber = "0.4.1"
|
||||
sqlx = { version = "0.8", features = [ "runtime-tokio", "postgres", "chrono" ] }
|
||||
dotenv_codegen = "0.15.0"
|
||||
cap = "0.1.2"
|
||||
thousands = "0.2.0"
|
||||
rayon = "1.11.0"
|
||||
|
||||
hocon = {version = "0.9.0", default-features = false, features = ["serde-support"] }
|
||||
Loading…
Add table
Add a link
Reference in a new issue