-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
43 lines (39 loc) · 1.82 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
[workspace]
resolver = "2"
members = ["fiberplane-pdk", "fiberplane-pdk-macros", "providers/*", "xtask"]
exclude = ["providers/.cargo"]
[workspace.package]
authors = ["Fiberplane <[email protected]>"]
edition = "2021"
rust-version = "1.65"
version = "1.0.0-beta.11"
license = "MIT OR Apache-2.0"
repository = "https://github.com/fiberplane/providers"
[workspace.dependencies]
fiberplane-ci = { git = "ssh://[email protected]/fiberplane/fiberplane.git", branch = "main" }
fiberplane-models = { version = "1.0.0-beta.13" }
fiberplane-pdk = { version = "1.0.0-beta.13", path = "fiberplane-pdk" }
fiberplane-pdk-macros = { version = "1.0.0-beta.13", path = "fiberplane-pdk-macros" }
fiberplane-provider-bindings = { version = "2.0.0-beta.11" }
fp-bindgen = { version = "3.0.0" }
fp-bindgen-support = { version = "3.0.0" }
rmpv = { version = "1", features = ["with-serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
time = { version = "0.3.15", features = [
"macros",
"serde-human-readable",
"serde-well-known",
"parsing",
] }
tracing = "0.1.36"
url = { version = "2.2.2", features = ["serde"] }
vergen = { version = "8.2.5", features = ["build", "git", "git2"] }
[patch.crates-io]
fiberplane-models = { git = "ssh://[email protected]/fiberplane/fiberplane.git", branch = "main" }
fiberplane-provider-bindings = { git = "ssh://[email protected]/fiberplane/fiberplane.git", branch = "main" }
#fp-bindgen = { git = "ssh://[email protected]/fiberplane/fp-bindgen.git", branch = "release-3.0.0" }
#fp-bindgen-support = { git = "ssh://[email protected]/fiberplane/fp-bindgen.git", branch = "release-3.0.0" }
#[patch.'ssh://[email protected]/fiberplane/fiberplane.git']
#fiberplane-models = { path = "../fiberplane/fiberplane-models" }
#fiberplane-provider-bindings = { path = "../fiberplane/fiberplane-provider-protocol/fiberplane-provider-bindings" }