-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (34 loc) · 2.13 KB
/
Cargo.toml
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]
name = "cgp-patterns"
version = "0.1.0"
edition = "2021"
[dependencies]
cgp = { version = "0.3.0" }
cgp-error-anyhow = { version = "0.3.0" }
serde = { version = "1", features = ["derive"] }
reqwest = { version = "0.12.12", features = [ "blocking", "json" ] }
itertools = { version = "0.14.0" }
serde_json = { version = "1" }
anyhow = { version = "1" }
datetime = { version = "0.5.2" }
sha1 = { version = "0.10.6" }
[patch.crates-io]
# cgp = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-core = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-extra = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-async = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-async-macro = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-component = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-component-macro = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-component-macro-lib = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-type = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-field = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-field-macro = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-field-macro-lib = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-error = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-error-extra = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-error-anyhow = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-run = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-runtime = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-sync = { git = "https://github.com/contextgeneric/cgp.git" }
# cgp-inner = { git = "https://github.com/contextgeneric/cgp.git" }