-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (38 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
39 lines (38 loc) · 1.26 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
35
36
37
38
39
[workspace]
members = [
"./crates/alloc",
"./packages/argon2",
"./packages/bcrypt",
"./packages/crc32",
"./packages/jieba",
"./packages/jsonwebtoken",
"./packages/xxhash",
]
resolver = "2"
[workspace.dependencies]
argon2 = { version = "=0.6.0-rc.8", default-features = false, features = ["alloc", "getrandom", "zeroize"] }
base64 = { version = "0.22" }
bcrypt = "0.19"
blowfish = { version = "0.10", features = ["bcrypt"] }
crc32c = { version = "0.6" }
crc32fast = { version = "1.4", features = ["nightly"] }
global_alloc = { path = "./crates/alloc" }
indexmap = { version = "2", features = ["serde"] }
jieba-rs = { version = "0.9", default-features = false, features = ["tfidf", "textrank"] }
jsonwebtoken = { version = "10", features = ["rust_crypto"] }
mimalloc-safe = "0.1"
napi = { version = "3", default-features = false, features = ["napi3"] }
napi-build = "2"
napi-derive = { version = "3", default-features = false, features = ["type-def"] }
once_cell = "1"
quickcheck = "1.0"
rand = "0.10"
rand_core = { version = "0.10" }
serde = "1.0"
serde_json = "1.0"
xxhash-rust = { version = "0.8", features = ["xxh32", "const_xxh32", "xxh64", "const_xxh64", "xxh3", "const_xxh3"] }
[profile.release]
codegen-units = 1
lto = true
overflow-checks = false
strip = 'symbols'