-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 897 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 897 Bytes
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
35
36
[package]
authors = ["LongYinan <lynweklm@gmail.com>","Tryggvi Larusson <Tryggvi.Larusson@netapp.com>","Fridvin Oddbjornsson <Fridvin.Oddbjornsson@netapp.com>"]
edition = "2021"
name = "nfs-js"
version = "0.8.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
bytes = "1.10.1"
libnfs = { version = "0.1.2", path = "./libnfs-rs" }
nfs-rs = { version = "0.2.0", path = "./nfs-rs" }
mime_guess = "2.0.5"
napi = { version = "~2.16.17" , default-features = false, features = [
"napi8",
"async",
"latin1",
] }
napi-derive = { version = "~2.16.13" }
nix = { version = "0.29.0", features = ["fs"] }
send_wrapper = "0.6.0"
serde_json = "1.0.140"
regex = "1.11.1"
[build-dependencies]
napi-build = "2"
[profile.release]
lto = true
rpath = true
[patch.crates-io]
libnfs-sys = { path = "./libnfs-sys" }