This removes the LuaJIT binary as a runtime dependency and decreases the complexity of the compilation, by not needing to juggle a bunch of temp files anymore. However, it was a bit of a pain to get everything set up in the end. Closes #4.
25 lines
819 B
TOML
25 lines
819 B
TOML
[package]
|
|
name = "sdk"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bitflags = "1.3.2"
|
|
byteorder = "1.4.3"
|
|
color-eyre = "0.6.2"
|
|
csv-async = { version = "1.2.4", features = ["tokio", "serde"] }
|
|
fastrand = "1.8.0"
|
|
futures = "0.3.25"
|
|
futures-util = "0.3.24"
|
|
glob = "0.3.0"
|
|
libloading = "0.7.4"
|
|
nanorand = "0.7.0"
|
|
pin-project-lite = "0.2.9"
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
|
serde_sjson = { path = "../../lib/serde_sjson", version = "*" }
|
|
oodle-sys = { path = "../../lib/oodle-sys", version = "*" }
|
|
tokio = { version = "1.21.2", features = ["rt-multi-thread", "fs", "process", "macros", "tracing", "io-util", "io-std"] }
|
|
tokio-stream = { version = "0.1.11", features = ["fs", "io-util"] }
|
|
tracing = { version = "0.1.37", features = ["async-await"] }
|
|
tracing-error = "0.2.0"
|
|
luajit2-sys = "0.0.2"
|