aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lockchain-client/Cargo.toml2
-rw-r--r--lockchain-core/Cargo.toml3
-rw-r--r--lockchain-crypto/Cargo.toml2
-rw-r--r--lockchain-files/Cargo.toml7
-rw-r--r--lockchain-http/Cargo.toml2
5 files changed, 10 insertions, 6 deletions
diff --git a/lockchain-client/Cargo.toml b/lockchain-client/Cargo.toml
index 097319a..1b0ebcb 100644
--- a/lockchain-client/Cargo.toml
+++ b/lockchain-client/Cargo.toml
@@ -7,7 +7,7 @@ authors = ["Katharina Fey <kookie@spacekookie.de>"]
documentation = "https://docs.rs/lockchain-client"
homepage = "https://github.com/spacekookie/lockchain/tree/master/lockchain-client"
readme = "README.md"
-license = "MIT/X11 OR Apache-2.0"
+license = "GPL-3.0"
[dependencies]
lockchain-core = { version = "0.9.0" } #, path = "../lockchain-core" }
diff --git a/lockchain-core/Cargo.toml b/lockchain-core/Cargo.toml
index b7dda71..61d05e5 100644
--- a/lockchain-core/Cargo.toml
+++ b/lockchain-core/Cargo.toml
@@ -4,12 +4,13 @@ description = "Provides common abstractions for the lockchain crate ecoystem"
documentation = "https://docs.rs/lockchain-core"
homepage = "https://github.com/spacekookie/lockchain/tree/master/lockchain-core"
readme = "README.md"
-license = "MIT/X11 OR Apache-2.0"
+license = "GPL-3.0"
version = "0.9.1-alpha.0"
authors = ["Katharina Fey <kookie@spacekookie.de>"]
edition = "2018"
[dependencies]
+indexmap = { version = "1.0", features = ["serde-1"] }
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
diff --git a/lockchain-crypto/Cargo.toml b/lockchain-crypto/Cargo.toml
index c8b425e..dd66bae 100644
--- a/lockchain-crypto/Cargo.toml
+++ b/lockchain-crypto/Cargo.toml
@@ -4,7 +4,7 @@ description = "Small shim layer crate for cryptographic operations on lockchain
documentation = "https://docs.rs/lockchain-crypto"
homepage = "https://github.com/spacekookie/lockchain/tree/master/lockchain-crypto"
readme = "README.md"
-license = "MIT/X11 OR Apache-2.0"
+license = "GPL-3.0"
version = "0.8.1-alpha.0"
authors = ["Katharina Fey <kookie@spacekookie.de>"]
edition = "2018"
diff --git a/lockchain-files/Cargo.toml b/lockchain-files/Cargo.toml
index 11bad30..8cdf52c 100644
--- a/lockchain-files/Cargo.toml
+++ b/lockchain-files/Cargo.toml
@@ -7,11 +7,14 @@ authors = ["Katharina Fey <kookie@spacekookie.de>"]
documentation = "https://docs.rs/lockchain-files"
homepage = "https://github.com/spacekookie/lockchain/tree/master/lockchain-files"
readme = "README.md"
-license = "MIT/X11 OR Apache-2.0"
+license = "GPL-3.0"
-# Specifies a semver vault version it can open
+# Specifies a semver vault version it can open
vault-version = "0.1"
+[features]
+git-backend = []
+
[dependencies]
lockchain-core = { version = "0.9.1-alpha.0", path = "../lockchain-core" }
semver = "0.9.0"
diff --git a/lockchain-http/Cargo.toml b/lockchain-http/Cargo.toml
index 9150033..24c2bec 100644
--- a/lockchain-http/Cargo.toml
+++ b/lockchain-http/Cargo.toml
@@ -7,7 +7,7 @@ authors = ["Katharina Fey <kookie@spacekookie.de>"]
documentation = "https://docs.rs/lockchain-http"
homepage = "https://github.com/spacekookie/lockchain/tree/master/lockchain-http"
readme = "README.md"
-license = "MIT/X11 OR Apache-2.0"
+license = "GPL-3.0"
[dependencies]
lockchain-core = { version = "0.9.1-alpha.0", path = "../lockchain-core" }