Undo previous license move, make ruma crate a subdirectory
This commit is contained in:
parent
f8a25dabca
commit
c81509c5a6
33
Cargo.toml
33
Cargo.toml
@ -1,33 +1,2 @@
|
||||
[package]
|
||||
name = "ruma"
|
||||
authors = ["Jonas Platte <jplatte@posteo.de>"]
|
||||
categories = ["api-bindings", "web-programming"]
|
||||
keywords = ["matrix", "chat", "messaging", "ruma"]
|
||||
description = "Types and traits for working with the Matrix protocol."
|
||||
documentation = "https://docs.rs/ruma-client-api"
|
||||
homepage = "https://www.ruma.io/"
|
||||
repository = "https://github.com/ruma/ruma"
|
||||
readme = "README.md"
|
||||
license = "MIT"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
|
||||
[features]
|
||||
appservice-api = ["ruma-api", "ruma-appservice-api", "ruma-events"]
|
||||
client-api = ["ruma-api", "ruma-client-api", "ruma-events"]
|
||||
federation-api = ["ruma-api", "ruma-federation-api", "ruma-signatures"]
|
||||
|
||||
[dependencies]
|
||||
ruma-common = "0.1.3"
|
||||
ruma-identifiers = "0.16.2"
|
||||
|
||||
ruma-events = { version = "0.21.3", optional = true }
|
||||
ruma-signatures = { version = "0.5.0", optional = true }
|
||||
|
||||
ruma-api = { version = "0.16.1", optional = true }
|
||||
ruma-appservice-api = { version = "0.1.0", path = "ruma-appservice-api", optional = true }
|
||||
ruma-client-api = { version = "0.9.0", optional = true }
|
||||
ruma-federation-api = { version = "0.0.2", optional = true }
|
||||
|
||||
[workspace]
|
||||
members = ["ruma-*"]
|
||||
members = ["ruma", "ruma-*"]
|
||||
|
@ -1,4 +1,3 @@
|
||||
Copyright (c) 2017 - 2020 Jonas Platte
|
||||
Copyright (c) 2019 Wim de With
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
30
ruma/Cargo.toml
Normal file
30
ruma/Cargo.toml
Normal file
@ -0,0 +1,30 @@
|
||||
[package]
|
||||
name = "ruma"
|
||||
authors = ["Jonas Platte <jplatte@posteo.de>"]
|
||||
categories = ["api-bindings", "web-programming"]
|
||||
keywords = ["matrix", "chat", "messaging", "ruma"]
|
||||
description = "Types and traits for working with the Matrix protocol."
|
||||
documentation = "https://docs.rs/ruma-client-api"
|
||||
homepage = "https://www.ruma.io/"
|
||||
repository = "https://github.com/ruma/ruma"
|
||||
readme = "README.md"
|
||||
license = "MIT"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
|
||||
[features]
|
||||
appservice-api = ["ruma-api", "ruma-appservice-api", "ruma-events"]
|
||||
client-api = ["ruma-api", "ruma-client-api", "ruma-events"]
|
||||
federation-api = ["ruma-api", "ruma-federation-api", "ruma-signatures"]
|
||||
|
||||
[dependencies]
|
||||
ruma-common = "0.1.3"
|
||||
ruma-identifiers = "0.16.2"
|
||||
|
||||
ruma-events = { version = "0.21.3", optional = true }
|
||||
ruma-signatures = { version = "0.5.0", optional = true }
|
||||
|
||||
ruma-api = { version = "0.16.1", optional = true }
|
||||
ruma-appservice-api = { version = "0.1.0", path = "../ruma-appservice-api", optional = true }
|
||||
ruma-client-api = { version = "0.9.0", optional = true }
|
||||
ruma-federation-api = { version = "0.0.2", optional = true }
|
19
ruma/LICENSE
Normal file
19
ruma/LICENSE
Normal file
@ -0,0 +1,19 @@
|
||||
Copyright (c) 2020 Jonas Platte
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
Loading…
x
Reference in New Issue
Block a user