forked from nolabs-ai/nono
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (47 loc) · 1.17 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (47 loc) · 1.17 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[workspace]
resolver = "2"
members = [
"crates/nono",
"crates/nono-cli",
"crates/nono-proxy",
"bindings/c",
]
[workspace.package]
edition = "2021"
rust-version = "1.74"
authors = ["Luke Hinds"]
license = "Apache-2.0"
repository = "https://github.com/always-further/nono"
homepage = "https://github.com/always-further/nono"
[workspace.dependencies]
# Error handling
thiserror = "2"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0.149", features = ["preserve_order"] }
toml = "1.0"
# Logging
tracing = "0.1"
# Secure credential handling
zeroize = { version = "1", features = ["alloc"] }
# Hashing
sha2 = "0.10"
# Filesystem walking
walkdir = "2"
ignore = "0.4"
globset = "0.4"
# Async runtime and HTTP
tokio = { version = "1", features = ["rt-multi-thread", "net", "io-util", "macros", "signal", "sync", "time"] }
hyper = { version = "1", features = ["http1", "server", "client"] }
hyper-util = { version = "0.1", features = ["tokio", "server-auto"] }
http-body-util = "0.1"
# Testing
tempfile = "3"
# C FFI bindings
cbindgen = "0.29"
[profile.release]
opt-level = 3
lto = "thin"
strip = true
codegen-units = 1
panic = "abort"