-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "jsrun"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "_jsrun" # Python import name
crate-type = ["cdylib"]
[dependencies]
anyhow = "1.0"
deno_core = "0.368.0"
deno_error = "0.7.0"
fastwebsockets = { version = "0.10.0", features = ["upgrade", "unstable-split"] }
futures = "0.3"
http = "1.3"
http-body-util = "0.1.3"
hyper = { version = "1.6.0", features = ["full"] }
hyper-util = { version = "0.1.10", features = ["tokio", "server", "server-auto"] }
indexmap = { version = "2.12.0", features = ["serde"] }
log = "0.4.28"
num-bigint = { version = "0.4", features = ["serde"] }
pyo3 = { version = "0.27.0", features = ["extension-module", "num-bigint"] }
pyo3-async-runtimes = { version = "0.27", features = ["attributes", "tokio-runtime"] }
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1.0"
tokio = { version = "1.42.0", features = ["rt", "macros", "time", "sync", "net"] }
tracing = "0.1"
uuid = { version = "1.16.0", features = ["v4"] }
[build-dependencies]
pyo3-build-config = "0.25.1"