-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
71 lines (55 loc) · 2.12 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
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
[package]
name = "try_gluon"
version = "0.5.0"
authors = ["Markus <marwes91@gmail.com>"]
license = "MIT"
edition = "2018"
default-run = "try_gluon"
[workspace]
members = ["gluon_master"]
[[bin]]
name = "try_gluon"
path = "src/app/main.rs"
[[bin]]
name = "generate_docs"
required-features = ["glob", "home"]
[dependencies]
aws_lambda_events = "0.5.0"
env_logger = "0.9.0"
anyhow = "1"
futures = "0.3"
hubcaps = { version = "0.6", git = "https://github.com/Marwes/hubcaps", branch = "std_future" }
lambda_runtime = "0.4"
log = "0.4"
serde = "1"
serde_derive = "1"
serde_json = "1"
structopt = "0.3"
tokio = { version = "1.12.0", features = ["signal", "rt", "rt-multi-thread"] }
toml = "0.5"
hyper = "0.14.13"
gluon = { version = "0.18.1", features = ["serialization", "regex", "rand", "web"] }
gluon_codegen = "0.18.0"
#gluon = { path = "../gluon", features = ["serialization", "web", "regex", "rand"] }
#gluon_codegen = { path = "../gluon/codegen" }
gluon_master = { path = "gluon_master" }
gluon_crates_io = { path = "gluon_crates_io" }
glob = { version = "0.3", optional = true }
home = { version = "0.5", optional = true }
[dev-dependencies]
tokio = { version = "1.12.0", features = ["macros"] }
[features]
server = ["gluon/web"]
[patch.crates-io]
# gluon = { version = "0.17", path = "../gluon" }
# gluon_base = { version = "0.17", path = "../gluon/base" }
# gluon_check = { version = "0.17", path = "../gluon/check" }
# gluon_vm = { version = "0.17", path = "../gluon/vm" }
# gluon_doc = { version = "0.17", path = "../gluon/doc" }
# gluon_format = { version = "0.17", path = "../gluon/format" }
# gluon = { version = "0.17", git = "https://github.com/Marwes/gluon", branch = "http" }
# gluon_base = { version = "0.17", git = "https://github.com/Marwes/gluon", branch = "http" }
# gluon_check = { version = "0.17", git = "https://github.com/Marwes/gluon", branch = "http" }
# gluon_vm = { version = "0.17", git = "https://github.com/Marwes/gluon", branch = "http" }
# gluon_doc = { version = "0.17", git = "https://github.com/Marwes/gluon", branch = "http" }
# gluon_format = { version = "0.17", git = "https://github.com/Marwes/gluon", branch = "http" }