Makes the Cargo.toml ready to work on the next version

pull/46/head
Tpt 4 years ago
parent 0c8256c07c
commit 5e77253624
  1. 4
      js/Cargo.toml
  2. 2
      lib/Cargo.toml
  3. 4
      python/Cargo.toml
  4. 4
      server/Cargo.toml
  5. 4
      testsuite/Cargo.toml
  6. 4
      wikibase/Cargo.toml

@ -1,6 +1,6 @@
[package]
name = "oxigraph_js"
version = "0.1.0-rc.1"
version = "0.1.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT/Apache-2.0"
readme = "README.md"
@ -17,7 +17,7 @@ name = "oxigraph"
wasm-opt = false
[dependencies]
oxigraph = {version = "0.1.0-rc.1"}
oxigraph = { version = "0.1", path="../lib" }
wasm-bindgen = "0.2"
js-sys = "0.3"
console_error_panic_hook = "0.1"

@ -1,6 +1,6 @@
[package]
name = "oxigraph"
version = "0.1.0-rc.1"
version = "0.1.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT/Apache-2.0"
readme = "../README.md"

@ -1,6 +1,6 @@
[package]
name = "pyoxigraph"
version = "0.1.0-rc.1"
version = "0.1.0"
authors = ["Tpt"]
license = "MIT/Apache-2.0"
readme = "README.md"
@ -17,7 +17,7 @@ name = "pyoxigraph"
doctest = false
[dependencies]
oxigraph = {version = "0.1.0-rc.1", features = ["sled"]}
oxigraph = {version = "0.1", path="../lib", features = ["sled"]}
pyo3 = {version = "0.11", features = ["extension-module"]}
[package.metadata.maturin]

@ -1,6 +1,6 @@
[package]
name = "oxigraph_server"
version = "0.1.0-rc.1"
version = "0.1.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT/Apache-2.0"
readme = "../README.md"
@ -16,5 +16,5 @@ async-std = { version = "1", features = ["attributes"] }
async-h1 = "2"
http-client = { version = "4", features = ["h1_client"] }
http-types = "2"
oxigraph = { version = "0.1.0-rc.1", features = ["rocksdb"] }
oxigraph = { version = "0.1", path="../lib", features = ["rocksdb"] }
url = "2"

@ -1,6 +1,6 @@
[package]
name = "oxigraph_testsuite"
version = "0.1.0-rc.1"
version = "0.1.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT/Apache-2.0"
readme = "../README.md"
@ -14,7 +14,7 @@ publish = false
[dependencies]
anyhow = "1"
chrono = "0.4"
oxigraph = { version = "0.1.0-rc.1" }
oxigraph = { version = "0.1.0", path="../lib" }
[dev-dependencies]
criterion = "0.3"

@ -1,6 +1,6 @@
[package]
name = "oxigraph_wikibase"
version = "0.1.0-rc.1"
version = "0.1.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT/Apache-2.0"
readme = "../README.md"
@ -17,6 +17,6 @@ async-h1 = "2"
chrono = "0.4"
http-client = { version = "4", features = ["h1_client"] }
http-types = "2"
oxigraph = { version = "0.1.0-rc.1", features = ["rocksdb"] }
oxigraph = { version = "0.1", path ="../lib", features = ["rocksdb"] }
serde_json = "1"
url = "2"
Loading…
Cancel
Save