-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
101 lines (88 loc) · 2.13 KB
/
Cargo.toml
File metadata and controls
101 lines (88 loc) · 2.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[package]
name = "cargo-hot"
description = "cargo run but with hot reloading, powered by subsecond"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
anyhow.workspace = true
ar.workspace = true
bincode.workspace = true
cargo.workspace = true
cargo-config2.workspace = true
cargo_metadata.workspace = true
clap.workspace = true
color-print.workspace = true
dunce.workspace = true
itertools.workspace = true
log.workspace = true
notify.workspace = true
pdb.workspace = true
rayon.workspace = true
serde_json.workspace = true
subsecond.workspace = true
subsecond-types.workspace = true
target-lexicon.workspace = true
tempfile.workspace = true
thiserror.workspace = true
tracing-subscriber.workspace = true
wasmparser.workspace = true
which.workspace = true
cargo-hot-protocol.workspace = true
cargo-hot-protocol.features = ["server"]
object.workspace = true
object.features = ["write_core"]
serde.workspace = true
serde.features = ["derive"]
tokio.workspace = true
tokio.features = ["rt-multi-thread", "io-util", "macros", "net", "process", "sync", "time"]
uuid.workspace = true
uuid.features = ["v5"]
walrus.workspace = true
walrus.features = ["parallel"]
[workspace]
members = ["example", "protocol"]
[workspace.package]
version = "0.1.1"
authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"]
edition = "2024"
license = "MIT"
repository = "https://github.com/hecrj/cargo-hot"
[workspace.dependencies]
cargo-hot-protocol = { version = "0.1", path = "./protocol" }
anyhow = "1"
ar = "0.9"
bincode = "2"
cargo = "0.88"
cargo-config2 = "0.1"
cargo_metadata = "0.20"
clap = "4.5"
color-print = "0.3"
dunce = "1"
itertools = "0.14"
log = "0.4"
notify = "8"
object = "0.36"
pdb = "0.8"
rayon = "1.10"
serde = "1"
serde_json = "1"
subsecond = "0.7"
subsecond-types = "0.7"
target-lexicon = "0.13"
tempfile = "3.20"
thiserror = "2.0"
tokio = "1.45"
tracing-subscriber = "0.3"
uuid = "1.17"
walrus = "0.23"
wasmparser = "0.232"
which = "7"
[workspace.lints.rust]
rust_2018_idioms = { level = "deny", priority = -1 }
unsafe_code = "deny"
unused_results = "deny"