functionalscript 0.0.411 → 0.0.412

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Cargo.lock CHANGED
@@ -3,12 +3,12 @@
3
3
  version = 3
4
4
 
5
5
  [[package]]
6
- name = "com"
6
+ name = "nanocom"
7
7
  version = "0.1.0"
8
8
 
9
9
  [[package]]
10
10
  name = "rstest"
11
11
  version = "0.1.0"
12
12
  dependencies = [
13
- "com",
13
+ "nanocom",
14
14
  ]
package/Cargo.toml CHANGED
@@ -1,5 +1,5 @@
1
1
  [workspace]
2
2
  members = [
3
- "com/rust/com",
4
- "com/rust/com/rstest",
3
+ "com/rust/nanocom",
4
+ "com/rust/nanocom/rstest",
5
5
  ]
File without changes
@@ -1,7 +1,9 @@
1
1
  [package]
2
- name = "com"
2
+ name = "nanocom"
3
3
  version = "0.1.0"
4
4
  edition = "2021"
5
+ description = "Nano-Com"
6
+ license = "MIT"
5
7
 
6
8
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
9
 
@@ -0,0 +1,3 @@
1
+ # Nano-COM
2
+
3
+ See [Nano-COM](https://en.wikipedia.org/wiki/Component_Object_Model#Nano-COM_(a.k.a_XPCOM)).
File without changes
@@ -6,4 +6,4 @@ edition = "2021"
6
6
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
7
 
8
8
  [dependencies]
9
- com = { path = ".." }
9
+ nanocom = { path = ".." }
@@ -3,7 +3,7 @@ mod test {
3
3
  // interface definition:
4
4
 
5
5
  mod library {
6
- use com::{CObject, Class, Interface, Object, Ref, GUID};
6
+ use nanocom::{CObject, Class, Interface, Object, Ref, GUID};
7
7
 
8
8
  #[allow(non_snake_case)]
9
9
  #[repr(C)]
@@ -62,7 +62,7 @@ mod test {
62
62
 
63
63
  // interface implementation
64
64
  mod x {
65
- use com::{CObject, Class, Ref, Vmt};
65
+ use nanocom::{CObject, Class, Ref, Vmt};
66
66
 
67
67
  use super::library::{IMy, IMyEx, IMyVmt};
68
68
 
@@ -91,7 +91,7 @@ mod test {
91
91
  }
92
92
 
93
93
  mod using {
94
- use com::Class;
94
+ use nanocom::Class;
95
95
 
96
96
  use crate::test::{library::IMyEx, x::X};
97
97
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functionalscript",
3
- "version": "0.0.411",
3
+ "version": "0.0.412",
4
4
  "description": "FunctionalScript is a functional subset of JavaScript",
5
5
  "main": "module.f.cjs",
6
6
  "scripts": {