-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (47 loc) · 2.39 KB
/
Cargo.toml
File metadata and controls
53 lines (47 loc) · 2.39 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
[workspace]
resolver = "3"
members = [
"crates/hypershell",
"crates/hypershell-components",
"crates/hypershell-json-components",
"crates/hypershell-reqwest-components",
"crates/hypershell-tokio-components",
"crates/hypershell-tungstenite-components",
"crates/hypershell-macro",
"crates/hypershell-examples",
"crates/hypershell-hash-components",
]
[workspace.package]
rust-version = "1.90"
edition = "2024"
license = "MIT"
repository = "https://github.com/contextgeneric/cgp"
authors = ["Soares Chen <soares.chen@maybevoid.com>"]
keywords = ["cgp"]
[workspace.dependencies]
cgp = { version = "0.7.0" }
cgp-error-anyhow = { version = "0.7.0" }
futures = { version = "0.3.31" }
hex = { version = "0.4.3" }
itertools = { version = "0.14.0" }
proc-macro2 = { version = "1.0.95" }
quote = { version = "1.0.40" }
reqwest = { version = "0.12.15" }
serde = { version = "1.0.219", default-features = false }
serde_json = { version = "1.0.140", default-features = false }
sha2 = { version = "0.10.9" }
tokio = { version = "1.45.0" }
tokio-tungstenite = { version = "0.26.2" }
tokio-util = { version = "0.7.15" }
url = { version = "2.5.4" }
hypershell = { version = "0.1.0", path = "./crates/hypershell" }
hypershell-components = { version = "0.1.0", path = "./crates/hypershell-components" }
hypershell-json-components = { version = "0.1.0", path = "./crates/hypershell-json-components" }
hypershell-reqwest-components = { version = "0.1.0", path = "./crates/hypershell-reqwest-components" }
hypershell-tokio-components = { version = "0.1.0", path = "./crates/hypershell-tokio-components" }
hypershell-tungstenite-components = { version = "0.1.0", path = "./crates/hypershell-tungstenite-components" }
hypershell-hash-components = { version = "0.1.0", path = "./crates/hypershell-hash-components" }
hypershell-macro = { version = "0.1.0", path = "./crates/hypershell-macro" }
[patch.crates-io]
# cgp = { git = "https://github.com/contextgeneric/cgp.git", branch = "v0.7.0" }
# cgp-error-anyhow = { git = "https://github.com/contextgeneric/cgp.git", branch = "v0.7.0" }