point to git

pull/8675/merge^2
Matt Paras 2024-10-27 20:42:12 -07:00
parent f68eb02ba6
commit 38e9e875c2
3 changed files with 9 additions and 4 deletions

5
Cargo.lock generated
View File

@ -2793,6 +2793,7 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "steel-core"
version = "0.6.0"
source = "git+https://github.com/mattwparas/steel.git#1bb17fceada4dd6535bacaf5c40c965a14620776"
dependencies = [
"abi_stable",
"anyhow",
@ -2841,6 +2842,7 @@ dependencies = [
[[package]]
name = "steel-derive"
version = "0.5.0"
source = "git+https://github.com/mattwparas/steel.git#1bb17fceada4dd6535bacaf5c40c965a14620776"
dependencies = [
"proc-macro2",
"quote",
@ -2850,6 +2852,7 @@ dependencies = [
[[package]]
name = "steel-doc"
version = "0.6.0"
source = "git+https://github.com/mattwparas/steel.git#1bb17fceada4dd6535bacaf5c40c965a14620776"
dependencies = [
"steel-core",
]
@ -2857,6 +2860,7 @@ dependencies = [
[[package]]
name = "steel-gen"
version = "0.2.0"
source = "git+https://github.com/mattwparas/steel.git#1bb17fceada4dd6535bacaf5c40c965a14620776"
dependencies = [
"codegen",
"serde",
@ -2866,6 +2870,7 @@ dependencies = [
[[package]]
name = "steel-parser"
version = "0.6.0"
source = "git+https://github.com/mattwparas/steel.git#1bb17fceada4dd6535bacaf5c40c965a14620776"
dependencies = [
"fxhash",
"lasso",

View File

@ -43,8 +43,8 @@ nucleo = "0.5.0"
slotmap = "1.0.7"
thiserror = "1.0"
# If working locally, use the local path dependency
steel-core = { path = "/Users/matt/code/steel/crates/steel-core", version = "0.6.0", features = ["anyhow", "dylibs", "sync"] }
# steel-core = { git = "https://github.com/mattwparas/steel.git", version = "0.6.0", features = ["anyhow", "dylibs", "sync"] }
# steel-core = { path = "/Users/matt/code/steel/crates/steel-core", version = "0.6.0", features = ["anyhow", "dylibs", "sync"] }
steel-core = { git = "https://github.com/mattwparas/steel.git", version = "0.6.0", features = ["anyhow", "dylibs", "sync"] }
[workspace.package]
version = "24.7.0"

View File

@ -75,8 +75,8 @@ grep-searcher = "0.1.14"
# plugin support
steel-core = { workspace = true, optional = true }
# steel-doc = { git = "https://github.com/mattwparas/steel.git", version = "0.6.0" }
steel-doc = { path = "/Users/matt/code/steel/crates/steel-doc", version = "0.6.0" }
steel-doc = { git = "https://github.com/mattwparas/steel.git", version = "0.6.0" }
# steel-doc = { path = "/Users/matt/code/steel/crates/steel-doc", version = "0.6.0" }
[target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }