Skip to content

Commit

Permalink
Manually ping version numbers for first release
Browse files Browse the repository at this point in the history
  • Loading branch information
mre committed Apr 30, 2024
1 parent 0229bc0 commit d3f2fd8
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 39 deletions.
2 changes: 1 addition & 1 deletion crates/terraphim_automata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "Apache-2.0"
readme = "../../README.md"

[dependencies]
terraphim_types = { path = "../terraphim_types" }
terraphim_types = { path = "../terraphim_types", version = "0.1.0" }

ahash = { version = "0.8.6", features = ["serde"] }
aho-corasick = "1.0.2"
Expand Down
8 changes: 4 additions & 4 deletions crates/terraphim_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ path = "src/bin/main.rs"
name = "terraphim-config"

[dependencies]
terraphim_rolegraph = { path = "../terraphim_rolegraph" }
terraphim_types = { path = "../terraphim_types" }
terraphim_automata = { path = "../terraphim_automata" }
terraphim_persistence = { path = "../terraphim_persistence" }
terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.0" }
terraphim_automata = { path = "../terraphim_automata", version = "0.1.0" }
terraphim_persistence = { path = "../terraphim_persistence", version = "0.1.0" }

opendal = { version = "0.44.2", features = [
"services-dashmap",
Expand Down
10 changes: 5 additions & 5 deletions crates/terraphim_middleware/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ readme = "../../README.md"


[dependencies]
terraphim_config = { path = "../terraphim_config" }
terraphim_rolegraph = { path = "../terraphim_rolegraph" }
terraphim_automata = { path = "../terraphim_automata" }
terraphim_types = { path = "../terraphim_types" }
terraphim_persistence = { path = "../terraphim_persistence" }
terraphim_config = { path = "../terraphim_config", version = "0.1.0" }
terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "0.1.0" }
terraphim_automata = { path = "../terraphim_automata", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.0" }
terraphim_persistence = { path = "../terraphim_persistence", version = "0.1.0" }

ahash = { version = "0.8.8", features = ["serde"] }
cached = { version = "0.47.0", features = ["async", "serde", "ahash"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/terraphim_persistence/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ readme = "../../README.md"


[dependencies]
terraphim_settings = { path = "../terraphim_settings" }
terraphim_types = { path = "../terraphim_types" }
terraphim_settings = { path = "../terraphim_settings", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.0" }

tracing-subscriber = { version = "0.3", features = [
"env-filter",
Expand Down
4 changes: 2 additions & 2 deletions crates/terraphim_rolegraph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ license = "Apache-2.0"
readme = "../../README.md"

[dependencies]
terraphim_automata = { path = "../terraphim_automata" }
terraphim_types = { path = "../terraphim_types" }
terraphim_automata = { path = "../terraphim_automata", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.0" }

ahash = { version = "0.8.3", features = ["serde"] }
aho-corasick = "1.0.2"
Expand Down
10 changes: 5 additions & 5 deletions crates/terraphim_service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ license = "Apache-2.0"
readme = "../../README.md"

[dependencies]
terraphim_persistence = { path = "../terraphim_persistence" }
terraphim_config = { path = "../terraphim_config" }
terraphim_middleware = { path = "../terraphim_middleware" }
terraphim_settings = { path = "../terraphim_settings" }
terraphim_types = { path = "../terraphim_types" }
terraphim_persistence = { path = "../terraphim_persistence", version = "0.1.0" }
terraphim_config = { path = "../terraphim_config", version = "0.1.0" }
terraphim_middleware = { path = "../terraphim_middleware", version = "0.1.0" }
terraphim_settings = { path = "../terraphim_settings", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.0" }

thiserror = "1.0.58"
opendal = { version = "0.44.2" }
Expand Down
16 changes: 8 additions & 8 deletions desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ rust-version = "1.57"
tauri-build = { version = "1.5.1", features = [] }

[dependencies]
terraphim_automata = { path = "../../crates/terraphim_automata" }
terraphim_config = { path = "../../crates/terraphim_config" }
terraphim_middleware = { path = "../../crates/terraphim_middleware" }
terraphim_rolegraph = { path = "../../crates/terraphim_rolegraph" }
terraphim_settings = { path = "../../crates/terraphim_settings" }
terraphim_types = { path = "../../crates/terraphim_types" }
terraphim_persistence = { path = "../../crates/terraphim_persistence" }
terraphim_service = { path = "../../crates/terraphim_service" }
terraphim_automata = { path = "../../crates/terraphim_automata", version = "0.1.0" }
terraphim_config = { path = "../../crates/terraphim_config", version = "0.1.0" }
terraphim_middleware = { path = "../../crates/terraphim_middleware", version = "0.1.0" }
terraphim_rolegraph = { path = "../../crates/terraphim_rolegraph", version = "0.1.0" }
terraphim_settings = { path = "../../crates/terraphim_settings", version = "0.1.0" }
terraphim_types = { path = "../../crates/terraphim_types", version = "0.1.0" }
terraphim_persistence = { path = "../../crates/terraphim_persistence", version = "0.1.0" }
terraphim_service = { path = "../../crates/terraphim_service", version = "0.1.0" }

anyhow = "1.0.81"
log = "0.4.21"
Expand Down
2 changes: 0 additions & 2 deletions lab/parking-lot/config-settings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ keywords = ["personal-assistant", "ai", "privacy", "config"]
license = "Apache-2.0"
readme = "../../../README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.44"
directories = ">= 2, < 5"
Expand Down
2 changes: 0 additions & 2 deletions lab/parking-lot/server-poem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ keywords = ["personal-assistant", "ai", "privacy", "agent", "automata"]
license = "Apache-2.0"
readme = "../../../README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.44"
poem = { version = "1.3.55", features = ["static-files", "embed"] }
Expand Down
16 changes: 8 additions & 8 deletions terraphim_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ license = "Apache-2.0"
readme = "../README.md"

[dependencies]
terraphim_persistence = { path = "../crates/terraphim_persistence" }
terraphim_config = { path = "../crates/terraphim_config" }
terraphim_middleware = { path = "../crates/terraphim_middleware" }
terraphim_rolegraph = { path = "../crates/terraphim_rolegraph" }
terraphim_settings = { path = "../crates/terraphim_settings" }
terraphim_types = { path = "../crates/terraphim_types" }
terraphim_automata = { path = "../crates/terraphim_automata" }
terraphim_service = { path = "../crates/terraphim_service" }
terraphim_persistence = { path = "../crates/terraphim_persistence", version = "0.1.0" }
terraphim_config = { path = "../crates/terraphim_config", version = "0.1.0" }
terraphim_middleware = { path = "../crates/terraphim_middleware", version = "0.1.0" }
terraphim_rolegraph = { path = "../crates/terraphim_rolegraph", version = "0.1.0" }
terraphim_settings = { path = "../crates/terraphim_settings", version = "0.1.0" }
terraphim_types = { path = "../crates/terraphim_types", version = "0.1.0" }
terraphim_automata = { path = "../crates/terraphim_automata", version = "0.1.0" }
terraphim_service = { path = "../crates/terraphim_service", version = "0.1.0" }

anyhow = "1.0.40"
axum = { version = "0.6.2", features = ["macros"] }
Expand Down

0 comments on commit d3f2fd8

Please sign in to comment.